Hello, I am trying to work out a logic to forward fill values.
Below is an example of what I want to achieve:
I want to forward fill the Calculation column values and the grouping will be based on platform and code.
So, I want to populate last non null value instead of zero in the calculation column. So, the output then becomes.
The reason for doing this is when I take absolute average of the calculation column for let's say A platform and ABC code, I will get the correct answer. Currently what it does is from image 1 it sums calculation and divides it by number of rows irrespective if it is zero or not. I am aware that we can skip zero values while averaging but I don't want to remove those records instead fill it with last non-null values.
Thanks much in advance!