Hi @ramesh_kola ,
As observed my @postwick , we do see that the table data or Chunks of data is organized in a Group Table, and each group contains 5 Column data or rather the same Columns.
Hence, this several group of data can be combined into a Single Table/Datatable by Merging the n number of Group tables available dynamically.
We could follow the below Steps :
-
Use
Read RangeActivity to read the data as a Datatable, sayDTwith range specified as “A3” as that is the start of row data.

-
Next, we create a Output Datatable using
Build DatatableActivity with the required column Names as observed/available in one group.

-
Next we get the Total Number of Groups present in the Data by Dividing the Total Number of Columns by 5. We perform an Iteration upto this number. Selecting the Column Chunks (every 5 columns) and Merging the Selected Columns Data to the Output Datatable.

-
Next, If required we could write the Output datatable to an Excel file using
Write RangeActivity.
Check the workflow below :
Excel_Combine_TableChunks.zip (10.1 KB)
Let us know if the method is not agreeable or if the Grouping assumption is wrong.