Excel Formula

  • Thread starter Thread starter NITA
  • Start date Start date
N

NITA

I am trying to create a formula in a speadsheet for the
following:

If cell "C" is true and cell "G" is blank then leave
cell "H" blank otherwise give me the max of cell "B,"F"
or "G" in cell "H."


Thank you,

Nita
 
" " 's around the TRUE produce the wrong results...

s/b --->>> =IF(AND(C1=TRUE,G1="","",MAX(B1,F1,G1))
 
Hi JMay,

Only if it's a Boolean. If it's "TEXT", you need them. But
that wasn't made clear by the OP.

Biff
 
Back
Top