Hi All
I have 2 columns:number of month and revenue. Need to create 3rd column where to show average revenue for last 2 months.
For example
N Rev AvR
1 2 -
2 4 -
3 6 3
4 8 5
and so on
Could you please advise whats the easiest way to do this? I can split it manually and then count sum and then union again, but for sure there should be faster way.
Thanks in advance.