In this excel based on the column OperatingUnit it has to divide into seperate files
For example Last 3 digits in the operatingUnit column i.e “PUR” rows should shift to one excel with same headers
in the same way for PR and CHL into two different excel
Use Assign activity and write as arrReports = {“PUR”, “CHL”}
Use For Each activity and pass the arrReports
Now, Inside the For Each activity place Filter Datatable activity
Configure Column as “OperatingUnit” and operation is EndsWith and value is CurrentRow(“OperatingUnit”).ToString
Pass the InputDatatable as dt_master and output Datatable as dt_temp
Next activity inside the ForEach place Write Range activity and pass the path and in addition to that add CurrentItem(“OperationUnit”).ToString + “.xls” which will give PUR / CHL to the filename