One Cell (J3) Answer Is Based On Text In Another Cell (I3)...

  • Thread starter Thread starter JonGall
  • Start date Start date
J

JonGall

Here's what I need to do:
If cell I3 has the text "NO", then cell J3 will be equal to cell E3
(basically J3 will have the same number as E3).

But If cell I3 has the text "YES", then cell J3 will be E3*L3.

What function will complete the above?

Thanks,

JG
 
=IF(I3="","",IF(I3="NO",E3,IF(I3="YES",E3*L3,"")))

--
HTH

Kassie

Replace xxx with hotmail
 
JonGall said:
Here's what I need to do:
If cell I3 has the text "NO", then cell J3 will be equal to cell E3
(basically J3 will have the same number as E3).

But If cell I3 has the text "YES", then cell J3 will be E3*L3.

What function will complete the above?

Thanks,

JG

Use the If function if the cell IB contain only 'NO' and 'YES' as shown below.
=IF(I3="NO",E3,(E3*L3))

You need nested function if other data is in I3
 
Back
Top