Link to home
Start Free TrialLog in
Avatar of Seamus2626
Seamus2626Flag for Ireland

asked on

IF with ISERROR

Hi,

On row 15, i have an IF Statement highlighted red. It should be returning "Cleared" as its adjacent cel (BD15) is an error

What is wrong with the formula?
=IF(BD15="no change","No Change",IF(BD15="Changed","Re-assigned",IF(ISERROR(BD15),"Cleared","")))

Thanks
Seamus test.xls
Avatar of StephenJR
StephenJR
Flag of United Kingdom of Great Britain and Northern Ireland image

Seamus - I think you just have to turn round (not sure why):

=IF(ISERROR(BD15),"Cleared",IF(BD15="no change","No Change",IF(BD15="Changed","Re-assigned","")))
ASKER CERTIFIED SOLUTION
Avatar of StephenJR
StephenJR
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Seamus2626

ASKER

perfect, thanks Stephen!