4
I have these two IF functions that work correctly on their own. I need to combine the two into one cell but can't seem to get them to work. Any help would be appreciated. And thanks in advance.
Screen capture 1
=IF(AND((D5="Intel"),(Z5="Not Attempted")),"Not Attempted")
Screen capture 2
=IF(AND(OR(D5="Pilot", D5="Sensor", D5="Admin"),(Z5="Not Attempted"),OR(C5="E-1",C5="E-2",C5="E-3",C5="E-7",C5="E-8",C5="E-9",C5="O-4",C5="O-5",C5="O-6")),"Not Required", "Not Attempted"
)
I've tried the following combos without any luck.
This one results in screen capture 3
=IF(AND((D5="Intel"),(Z5="Not Attempted")),"Not Attempted")=IF(AND(OR(D5="Pilot", D5="Sensor", D5="Admin"),(Z5="Not Attempted"),OR(C5="E-1",C5="E-2",C5="E-3",C5="E-7",C5="E-8",C5="E-9",C5="O-4",C5="O-5",C5="O-6")),"Not Required", "Not Attempted")
This combo results in a #VALUE! Error in the cell:
=IF(AND((D5="Intel"),(Z5="Not Attempted")),"Not Attempted"),IF(AND(OR(D5="Pilot", D5="Sensor", D5="Admin"),(Z5="Not Attempted"),OR(C5="E-1",C5="E-2",C5="E-3",C5="E-7",C5="E-8",C5="E-9",C5="O-4",C5="O-5",C5="O-6")),"Not Required", "Not Attempted")
And this screen capture is me manually updating the cells to show what I need them to show, screen capture 4
http://i16.photobucket.com/albums/b43/bakdawg/Capture1_zps5446303f.png – Bryce – 2013-09-16T10:37:53.517
http://i16.photobucket.com/albums/b43/bakdawg/Capture2_zps7a9fcc8d.png – Bryce – 2013-09-16T10:38:11.517