The following is something I have tried after some research on nested IF's however it only gives expected results for the first part of the statement and not the remainder, can anyone explain why or do I need a different type of function?
=if(h4="basic","basic",if(g17>=500,"Standard",if(h4="standard","Standard",if(g17>=750,"Standard+",if(g17<=500,"Basic",if(h4="Standard+","standard+",If(g17<=750,"Standard",if(g17>=850,"Platinum",if(h4="Platinum","Platinum",if(g17<=850,"Standard+","Platinum"))))))))))
Thanks for your assistance.
You have one if
and later on you have
The last condition will never be "satisfied", for if it is actually true, it will not be tested for, as the first
if(g17>=500
will beTrue
.I do not know what are the "expected results", "the first part of the statement", or "the remainder", but hopefully this helps.
Thanks for the advice I do not think I explained myself too well, but in the end with some of the suggestions was able to work it out here is the finished formula:
You can try this