formula

  • Thread starter Thread starter Help with cell function
  • Start date Start date
H

Help with cell function

I need to know if I can get a formula for the following:

If cell E14 is "y" and G14 is less than or equal to 14 the H14 should be "y"
 
Hi,
in H14 enter
if(and(E14="Y",G14<=14),"Y","")

In the case you have other values in E14 and G14 it will enter a blank if
you want other thing like an N enter replace "" in the formula with "N"

if this helps please click yes thanks
 
In H14

=IF(AND(E14="Y",G14<=14),"","Y")

That's the same answer as for your earlier post...
 
Back
Top