Display text in cell when target value reached
Hi Guys,
Unsure if this is possible so here goes:
Total value in Cell H9
1st Target value in cell I9 (If H9 is =>I9 but In cell G the target achieved to display as “text” (depending on value reached in Cell H9, “not achieved, achieved, exceeded or extra mile”.
I hope this makes sense, apologies if not.
Thank you for looking into this headache!
conceptually, if you want to
conceptually, if you want to add text to a score, and the score is in A1, you'd use something like this:
=IF(A1>90,"wow",IF(A1>80,"good",IF(A1>50,"average","unclassified")))
- so first check if the value is greater than the highest threshold, then next.. etc..
- "unclassified" is your catch-all at the end