My goal is to determine, first, the difference in dollar amounts between months and then calculate the average difference. I have the following data for example:
Month 1 $446.4
Month 2 $486.7
Month 3 $458.5
Month 4 $455.8
Each dollar amount is a result of a formula calculation where formula 1 is in reference to month 1 and so on.
I know that it is easy to get the difference by just using @formula2 - @formula1. However, the problem is that, for example, when you take @formula3 - @formula2, you get a negative number. I am aware of the ABS function that will give the absolute value, however, when I used it in this case, it was not working for me.
I wrote: abs({@formula2} - {@formula1}) and received back a number over 900!
Is there another way to utilize this function for this purpose or is there an entirely different solution?
Month 1 $446.4
Month 2 $486.7
Month 3 $458.5
Month 4 $455.8
Each dollar amount is a result of a formula calculation where formula 1 is in reference to month 1 and so on.
I know that it is easy to get the difference by just using @formula2 - @formula1. However, the problem is that, for example, when you take @formula3 - @formula2, you get a negative number. I am aware of the ABS function that will give the absolute value, however, when I used it in this case, it was not working for me.
I wrote: abs({@formula2} - {@formula1}) and received back a number over 900!
Is there another way to utilize this function for this purpose or is there an entirely different solution?