I have following for filter and delete rows (excel activity) and tick for “has header”. It works but the result has been deleted with the header. Is it because the header start from Row “A3”? Cannot use specific rows or index because the data might be huge and did not know what the index might be empty.
Do you have any solution on this? If header start from A3 and can delete the entire last row where the column is empty.
Read range workbook (originalDt)
Try this linq query in assign:
filteredDt = originalDt.AsEnumerable().Where(Function(row) Not row.ItemArray.All(Function(field) field Is DBNull.Value Or field.Equals(""))).CopyToDataTable()
While writing with write range activity yu can mention the start range u want
There just mention the first cell from where u want to start like “A1” or “A3”
For Writing to the Same sheet or overwrite the data existing, sometimes the data to be written is lesser than the ones present in the Excel sheet. In these cases, we would require to clear the sheet contents at first and then write the Data to the sheet.
For this one of the methods is mentioned below :
We could also create empty rows and add/append the empty rows to the Datatable according to the total rows present in the Existing sheet and then write the datatable to the same sheet. Topics related to creating empty rows :