I need to create a formula that captures the following information:
- If the value in C3 is 0 it needs to read 'Green',
- the value in C3 is ≥1 but <500 it needs to read 'Silver',
- the value in C3 is ≥500 but <1500 it needs to read 'Gold' and
- if the value in C3 is ≥1500 then it needs to read 'Platinum'.
I have this formula worked out:
=IF(D3<500,"Silver",IF(AND(D3>=500,D3<=1499),"Gold","Platinum"))
But I can't figure out how to incorporate the 0 to equal Green.