I need to rearrange order of columns in my datatble according to column list. I've tried two things.
In both cases I were using column list (same numer of rows that original datatable columns count), where column name was a RowID and no other columns were present, so I've transposed the columns list table and:
a) try to use Reference Column Resorter - which fails due to incompatible column types (transposed reference table has all columns of type "?"),
b) try to use Concatenate, with first input being a transposed reference column list table, and a second one a datatable to reorder, this one does not fail, hovever all columns became type "?".
How can I achieve my goal and keep original column types?