Hi, I have this excel file which I will like to rearrange the line items base on category. Meaning all the key chains together, a spacing, then all the Tees etc. Not just the description but also the code and quantity. I also need the total line to be still present. How can I do that?
Step1: Read the Excel
Step 2 : remove Empty rows by using below code in Assign Activity DataTableName=DataTableName.Rows.Cast(Of DataRow)().Where(Function(row) Not row.ItemArray.All(Function(field) field Is DBNull.Value Or field.Equals(“”))).CopyToDataTable()
step 3: Sort the excel (Using Sort DataTable)