So the scenario is this. I have a client that is producing an excel file for me to process. For now I have been manually opening it, and deleting the first row (which has some title in it) so the header values are moved up into row 1. I am hoping I could edit the excel in EPF to do this for me (as well as maybe add some columns)
I know I can do something like
set cell(sheet1,"A1")to empty
but that of course doesn’t delete it so that isn’t any help
Also tried something like
delete cellRange(1) of sheet1 from data1
While this runs nothing actually happens if I log it out (thought it was worth a try)
Then there is something like
put the first record of sheet2 into test1 // not sure the word first does anything
log test1
delete record test1
but this will leave the title row (thinking its the header) and delete row 2 instead
Is there a simple way to do this I am just missing?
Also hoping I can add a new column (Status) to report the processing status of each row that can be in column A but not sure if that is possible either. I know I could write to a new file (maybe) but trying to keep it simple to work with the client