IF Function or IF then else

K

klgcm

I want to use an If function that meets one situation and if that doesn't
work I want to use a second If function in the same cell, but the second
situation has nothng to do with the first situation

eg; If (F2>75, (F2-75), (0), If (E26>75, (E26-75), (0))

Can this be done?
 
B

Bob Phillips

do you mean?

=If (F2>75, F2-75, If (E26>75, E26-75, 0))

You can't always test both conditions, if the fist is met, the second
doesn't get evaluated.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top