Hello everyone,
I am having a bit of a hard time trying to combine two or more than two list variables into one data table.
Final Aim - New Data Table
| Column a (List variable) |
Column b (List variable) |
| AAA |
A |
| BBB |
B |
| CCC |
C |
Currently, I have two list tables that were extracted from other data. My original purpose is to change the data table column order for the original data table, which:
After I used the retrieve data table column in the list action, I successfully made all the data table columns into a separate list variable, which:
| Column a (List variable) |
| AAA |
| BBB |
| CCC |
When I use the insert row into the data table action for each action, for column a, it is successfully inserted into the new data table. However, when the operation for column b, the issues showed that:
Correlation Id: ad02d1fe-50e4-4062-ae3f-d4dda13c8467
The amount of values provided to be added (1) don't match the columns of the data table (2).
I also tried to use the merge data tables action, which inputs the two lists of variable data into two different data tables. But the result is that column B starts from the next free row of column a in column b.
| Column a (List variable) |
Column b (List variable) |
| AAA |
|
| BBB |
|
| CCC |
|
| |
A |
| |
B |
| |
C |
Can I ask anyway to solve the issues? Thank you all!