I am using VBA to put a formula into a cell.
The formula I want to put is based on a counter, i.
The desired formula would be: =IF($B384 > 0, $H384, "") where the row number is derived by a counter.
My code is:
Lastentry = Lastentry - 1
For i = Lastentry To Lastentry + Addrow...