Hi,
I have one column called "Revenue is declining, stable, or growing" with numeric values of 1,2,3
The numeric values go into a total score and ranking for the account. That works fine.
In addition, in a separate column, I need to set up a function to give an up, down, neutral indicator based off the value in the above column.
Here's what I've tried and get an unparseable error:
=IF([Revenue is declining, stable, or growing]@row = 2, "Sideways", IF([Revenue is declining, stable, or growing]@row = 3 "Up",IF([Revenue is declining, stable, or growing]@row = 1, "Down"))
Here's an example of what I'm aiming for but I don't have the function set correctly for the trend indicator.
Thanks!