Ally
Registered User.
- Local time
- Today, 14:46
- Joined
- Sep 18, 2001
- Messages
- 617
Hi
I’m trying to do a convoluted IF AND OR statement and am getting in a bit of a mess.
I’m trying to say:
I know that I can only have 7 nested IF’s in 2003. I have tried many variations of
IF(AND(OR(…. But it either doesn’t work properly, or I have a syntax error or when I get to the second section, it’s not picking up the AND and only looking at the OR. I’ve tried putting extra AND(OR inbetween but that’s not working.
Can anyone help please?
Thanks
Ally
I’m trying to do a convoluted IF AND OR statement and am getting in a bit of a mess.
I’m trying to say:
Code:
IF A cell = “Achieved”
AND B cell = “Y”
OR B cell = “N”
OR B cell = “Not indicated”
Then value = “Achieved”
IF A cell = “Achieved”
AND B cell = “Indicated?”
OR B cell = “Invalid Date”
Then value = “Achieved but indicator or date error”
IF A cell = “Failed”
AND B cell “Y”
OR B cell = “N”
OR B cell = “Not Indicated”
Then value = “Failed”
If A cell = “Failed”
AND B cell = “Indicated?”
OR B cell = “Invalid Date”
Then value = “Failed and indicator or date error”
… and there’s more in the same vane.
IF(AND(OR(…. But it either doesn’t work properly, or I have a syntax error or when I get to the second section, it’s not picking up the AND and only looking at the OR. I’ve tried putting extra AND(OR inbetween but that’s not working.
Can anyone help please?
Thanks
Ally