Modifying an Existing Formula

C

carl

I am using this formula:

IF(ISNA(I8),"",J8)

I would like to adjust the formula to look at H8 and if H8=1, do the same
thing otherwise do nothing ("").

Thank you in advance.
 
B

Bob Phillips

=IF(AND(ISNA(I8),H8=1),"",J8)


--

HTH

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