Hi
Iam writing some data in excel and when iam re writing the some data in excel …it is over lapping with the existing data
if existing data count is less than the new data …it wring the complete new data
but when existing data count is more than the new data it is overlapping with old data
@T_Y_Raju
You can either check using path exist to check whether such an excel exists and then delete it
Or You can set continue on error property of delete activity as true and next time if the excel is not there it will continue the process without trying to delete it
If continue on error is set to true if there an excel exists it will get deleted, and you can create new excel and write the data in it, also even if there is no excel it will not throw any error as you got earlier (in the next run)