If the User wants to Copy all the Data from all the Rows to a Column in a Separate Sheet. Then the following code will be helpful.
A DataTable.GetRowCount
DataTable.GetSheet(dtLocalSheet).AddParameter "CopiedData" ""
For i 1 to A
DataTable.SetCurrentRow(i)
b DataTable.Value("Values")
DataTable.Value("CopiedData" dtLocalSheet) b
Next