Greater Than 24 But Less Than 48 - If Statement

W

Workbook

I want a “1†to appear in cell N2 if in cell M2 I have greater than 24 but
less than 48. This is the IF statement that I have so far in cell N2.
=IF(Sheet1!M2>=25,1,""). What do you think?
 
L

Lars-Åke Aspelin

I want a “1” to appear in cell N2 if in cell M2 I have greater than 24 but
less than 48. This is the IF statement that I have so far in cell N2.
=IF(Sheet1!M2>=25,1,""). What do you think?

Try this formula:

=IF(AND(Sheet1!M2>24,Sheet1!M2<48),1,"")

Hope this helps / Lars-Åke
 
W

Workbook

Thank you, this is very helpful to me.

Lars-Ã…ke Aspelin said:
Try this formula:

=IF(AND(Sheet1!M2>24,Sheet1!M2<48),1,"")

Hope this helps / Lars-Ã…ke
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top