Hi Guys,
I am introducing a new column titled 'Delta' where each cell's value relies on the value of the cell directly above it, as illustrated below:
in row#15, I have this code: =IF((ISBLANK([ColumnA]@row)), Delta14, [ColumnA]@row - [ColumnB]@row + Delta14)
in row#16 I have this code: =IF((ISBLANK([ColumnA]@row)), Delta15, [ColumnA]@row - [ColumnB]@row + Delta15)
in row#17, I have this code: =IF((ISBLANK([ColumnA]@row)), Delta16, [ColumnA]@row - [ColumnB]@row + Delta16)
and so on... in general, I want a generic function in row#X where the code is: =IF((ISBLANK([ColumnA]@row)), DeltaX-1 , [ColumnA]@row - [ColumnB]@row + DeltaX-1)
Your assistance with this matter would be greatly appreciated :)