Hi,
StudioX, to write to first free row string manipulation is required.
My original which gave the error.
Excel.Sheet(“Sheet1”).Cell(First_Free_Row.ToString)
Wheras below eventually solved my issue, a user member provided me with great help.
Excel.Sheet(“Sheet1”).Cell(“A”+(First_Free_Row).ToString)
I just think this manipulation should not be required at all, the Find First/Last Data Row gets the first free row exactly but upon writing to this first free row the error came about.