use other cell information to put formula in current cell

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

Help with cell function

if cell e 14 = y and cell g14 is less than 15, h14 should be y...how do i do
it? Thanks
 
What happens if criteria is not met?
Something like this in cell H14 is what you're looking for:

=IF(AND(E14="y",G14<15),"y","Criteria not met")
 
Back
Top