A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Thanks that's great so based on that condition 2 would be:
=AND($A2="England",$B2<16000,$C2="Y",$D2="F",$E2="") ?
Assuming by "Null" you mean a blank cell then yes, that should do it for condition 2.
I stll can't figure out condition 3, sorry - could you give me any help?
You said condition 3 is:
Where Country is Not England OR Income is >£16000 OR Verification is not Y ORMode is not F AND Reason is Not Null
You could do with putting some brackets around that to make it crystal clear, but at a guess this should do what you want:
=AND(OR($A2<>"England",$B2>=16000,$C2<>"Y",$D2<>"F"),$E2<>"")
Test it thorougly. This gives TRUE if:
(Country is Not England OR Income is >=£16000 OR Verification is not Y OR Mode is not F)
AND
(Reason is not blank)
Note also I used >= for the currency test. You should be careful to avoid using < in one condition and > in another condition since niether will return a result if income **=**16000! So use >= for "greater than or equal to" or <= for "less than or equal to" in one of your two conditions.
Hope that helps.
Cheers
Rich