The number of columns in my data will vary dynamically.
If the next row of data is empty, I want to copy it from the above row. The formula for my multi-row formula looks like this:
IF IsNull([F11]) THEN [Row-1:F11] ELSE [F11] ENDIF
Where F11 is an example column. The issue is that I may need to do this, 4, 6, or 20 times on a file depending on the data included. Is there a way I can systematically check each column and perform the multi-row formula?