hello, I want to keep an excel log, but new logs should not be overwritten, they should be written one after the other. How can I do that ?
Hi,
Are you trying to write down your logs into excel file?
Then You can have datatable and add them into that data table and by using append range in the end state you can add into excel file
Let me know if I’m wrong in terms of your requirement.
Hey!
Create the counter variable - Type int - Initialize with 1
Then use write cell activity Inside the for each row
Range: “A1:A”+(Counter+1).ToString
Assign Counter=Counter+1
Regards,
NaNi
Hello @d.ulutas Hope the below video would help!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.