is it possible to split the above text into different Variables based on the number? Say all the data with 1 to be in one variable similarly for 2,3,etc.
Use Read CSV activity to read the text file into a data table DT.
Apply filters on the data table.
Get all the unique values from Column1 and store into a data table DTUnique.
For Each row in DTUnique
//filtering using Select Method
newDT = DT.Select("Column1='" + row(0).ToString + "'").CopyToDataTable
//newDT contains all the 1 values in the first iteration
//newDT contains all the 2 values in the second iteration ....
//process the newDT and move to the next iteration...