Hi Alteryx Community
Is there any way to make the make column tool dynamic? By that I mean, if the data is going to change and that changes the number of columns needed is that possible?
If I have something like the below I can crosstab and the make columns based on the fact that I know there are rows of data that will become 10 columns based on my input on the make columns tool.
| Date | Quantity | Price | Commission |
| 3/1/2025 | 1 | 95 | 10 |
| 3/2/2025 | 2 | 105 | 11 |
| 3/3/2025 | 3 | 115 | 12 |
| 3/4/2025 | 4 | 125 | 13 |
| 3/5/2025 | 5 | 135 | 14 |
But if this data changes tomorrow to say 2 rows of data, is it possible to then tell the workflow to read less data into the crosstab tool and then onwards to the make columns tool?
| Date | Quantity | Price | Commission |
| 3/6/2025 | 1 | 95 | 10 |
| 3/7/2025 | 2 | 105 | 11 |
Thank you for your time