• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula help

dchatrie

New Member
I want a formula that will help me choose between these three (3) options:

1. If greater than 100% then "Targets surpassed"

2. If equal to 100% then "x% of Targets achieved"

3. If less than 100% then "Missed targets by x%"
 
To add to what Montrey said:

=if(a1>1,"Targets Surpassed",if(a1=1,TEXT(A1,"#%")&" of Targets Achieved","Missed targets by "&TEXT(A1,"#%")))
 
Back
Top