Hi! I’m going crazy trying to come up with an NPS formula. I am planning to have a formula return -100, 0, or 100 depending on the value so I can then average that column on dashboards.
I can get my NPS just fine, but I can’t figure out how to exclude blank cells in an IF statement.
In words, I want the following:
If {Program NPS Value} is between 0 (inclusive) and 6 (inclusive), -100
If {Program NPS Value} is 7 or 8, 0
If {Program NPS Value} is 9 or 10, 100
If {Program NPS Value} is BLANK, “”
There’s gotta be a way to factor out these blank cells.
I’m getting -100s for all my blank cells with this formula:
IF({NPS Value} < 7, -100, IF({NPS Value} > 8,100,0))
I appreciate your help!!