Apr 05 2024 04:15 AM
Hello all,
I've been struggling to write an IF formula for my query below and was wondering if anyone could help. Is it even possible with an IF formula?
I have the data in the screenshot below and I'm trying to create an IF formula in column R based on the following conditions...
If M4 >=0.1 - Tier 3
If M4 >=0.01 + L4 = "#" - Tier 2
If M4 >0.01 + L4 = "<" - Tier 2
If M4 <=0.01 + L4 = "<" - Tier 1
If M4 <0.01 + L4 = "#" - Tier 1
I hope that makes sense. Thank you in advance!
Apr 05 2024 04:29 AM
=IF(M4>=0.1, "Tier 3", IF(L4="#", IF(M4>=0.01, "Tier 2", "Tier 1"), IF(M4>0.01, "Tier 2", "Tier 1")))
or
=IF(M4>=0.1, "Tier 3", IF(M4>0.01, "Tier 2", IF(M4<0.01, "Tier 1", IF(L4="#", "Tier 2", "Tier 1"))))