I am trying to write a formula for the following:
If a percent is <= 0, "Major Gap"
If the percent is between 0 and 10, "Minor Gap"
If the percent is >=10, "No Gap"
=IF(AND([Percent Change]@row > 0, [Percent Change]@row < 10), "Minor Gap", IF([Percent Change]@row >= 10, "No Gap", IF([Percent Change]@row <= 0, "Major Gap")))
I am not receiving the correct option. Any help would be appreciated.