hello guys, I need to ask you for help. I have positive, negative and also zero values in columns A. Now, in column B1 I need to display the last known value (positive or negative) of column A, but not zero. Here is an example:
A1: 100
A2: 0
A3: -200
A4: 0
So in column B1 should be displayed value “-200” in this case (because 0 value should be ignored).
I tried to use this =INDEX(A:A;COUNT(A:A)+1) but it displays the last value including zero.
Any ideas how to fix this?
Thank you very much.