Thread: nested if
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default nested if

Maybe

=IF(D10="","",IF(D10<L10,L10,IF(D10=K10,F10)))

or

=IF(D10="",0,IF(D10<L10,L10,IF(D10=K10,F10)))

Miek

"ACarella" wrote:

I have the following if statement.
The third IF statement is not working.
Please help.
Thank you.
Arlene

=IF(D10<K10,L10,IF(D10=K10,F10,IF(D10=0,0.00)))
the 3rd IF statement can also be interpreted as IF(B10=' ',D10)))
If cell B10 is blank, then return the value in D10