A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
Try this
=IF(F2<0.1,0,IF(F2<0.2,1,2))
Hope this helps.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Looking to create an IF formula for the following. I have it started but cannot complete. I know how to do each individual IF formula, just mot each condition together.
IF Cell is less than .10, return 0, if between .10 and .20, return 1, if between .2 and 1, return 2.
=IF(F2<0.1, 0)
=IF(OR(F2>=0.1, F2<0.2),1)
=IF(OR(F2>=.2, F2<1),2)
Thanks!
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi,
Try this
=IF(F2<0.1,0,IF(F2<0.2,1,2))
Hope this helps.
Correct, it is a percentage.
Hi,
From the original question, it appears that F2 will have a maximum value of 1.
=IF(F2<0.1,0,IF(F2<0.2,1,2))
What is F2 is 5?
IF Cell is less than .10, return 0, if between .10 and .20, return 1, if between .2 and 1, return 2.
Try this boolean version,
=((F2>=0.1)+(F2>=0.2))*(F2<1)