Tony Miall
Active Member
- Joined
- Oct 16, 2007
- Messages
- 304
Morning all,
In a worksheet called MICROMETER I have a range I3:I40 in which each cell of that range has a result of either "OK" or "OVERDUE"
In another worksheet (called FRONT PAGE) I want cell B3 to show the result "OK" only if all of the cells I3:I40 in MICROMETER = OK, if one of the cells in the range does not = OK I want cell B3 in FRONT PAGE to = OVERDUE.
I did this with the following formula :
this seems to work.
However when I apply the same formula
in cell B4 in FRONT PAGE to look at another worksheet called VERNIER it doesn't work and I can't understand why??
Any help much appreciated as usual.
In a worksheet called MICROMETER I have a range I3:I40 in which each cell of that range has a result of either "OK" or "OVERDUE"
In another worksheet (called FRONT PAGE) I want cell B3 to show the result "OK" only if all of the cells I3:I40 in MICROMETER = OK, if one of the cells in the range does not = OK I want cell B3 in FRONT PAGE to = OVERDUE.
I did this with the following formula :
Code:
=IF(MICROMETER!$I$3:$I$40="OK", "OK", IF(NOT(MICROMETER!I3:$I$40="OK"),"OVERDUE",""))
However when I apply the same formula
Code:
=IF(VERNIER!$I$3:$I$40="OK", "OK", IF(NOT(VERNIER!I4:$I$40="OK"),"OVERDUE",""))
Any help much appreciated as usual.