Hi All,
I have a below requirement. I'm having multiple fields coming from different inputs. I need to combine these fields to create one separate table.
INPUT 1-
| Date |
| May 1st 2023 |
INPUT 2-
| ATP Successful Transactions (Count) |
| 29 |
INPUT 3-
| ATP Successful transactions (Amount) |
| ₹ 953.40 |
Expected Output - in one table after combining
| Date | ATP Successful Transactions (Count) | ATP Successful transactions (Amount) |
| May 1st 2023 | 29 | ₹ 953.40 |
Thanks in advance.
Solved! Go to Solution.
Hi @hemant86
Please use the join multiple tool.
Note: Use join by record position
Many thanks
Shanker V
Thanks @ShankerV I was using the Multi Join but was getting lot of null rows. Checking the option Join by record position fixed it. Thanks again

