Hello guys,
I have an Excel sheet in which it should only read and write the data to next excel if it is having remarks.
Example above
It should only read and write data containing status
Hello guys,
I have an Excel sheet in which it should only read and write the data to next excel if it is having remarks.
Example above
It should only read and write data containing status
Rows.Count
property to check the row count.Read Range (Input Excel file path) → Output: dtInput
Filter DataTable (Filter condition: “Remarks <> ‘’”)
Write Range (Output Excel file path) → Input: dtFiltered
cheers…!