Hi, I need help with a nested IF statment.
I have the following which currently works
This works and returns a value of 1 when Compliment is found.
This is looking in H4 for Compliment and H65 for the text "205(3a)". It works fine.
The only problem is I have about 90 celles to put this in and each time the text part is different. The text is the same as in say cell A91 then the next formula the text is the same in cell A93 etc...
So what I ideally want is the "205(3a)" to be replace by H65=A91, then I can just copy the formula down and the A91 will update itself.
However when I put in A91, I get a return of FALSE instead of 1.
^^^ that is what I have put in for the value to return FALSE.
I need the 1 to show so I can then perform counts and sums on the figure.
Any ideas?
Thanks
Will
I have the following which currently works
Code:
=IF(AND($H$4="Complient",H65="205(3a))"),1,IF($H$4="Not Complient",H65="205(3a)))",1))
This is looking in H4 for Compliment and H65 for the text "205(3a)". It works fine.
The only problem is I have about 90 celles to put this in and each time the text part is different. The text is the same as in say cell A91 then the next formula the text is the same in cell A93 etc...
So what I ideally want is the "205(3a)" to be replace by H65=A91, then I can just copy the formula down and the A91 will update itself.
However when I put in A91, I get a return of FALSE instead of 1.
Code:
=IF(AND($H$4="Complient",H93=A93),IF($H$4="Not Complient",H93=A93),1)
^^^ that is what I have put in for the value to return FALSE.
I need the 1 to show so I can then perform counts and sums on the figure.
Any ideas?
Thanks
Will