Hello - I am new to Alteryx. I am trying to create an excel file with a dynamic file name and tab names based on the values in a field. So, for example, on one run of the flow, the file it creates may be C:\mypath\file_name_123.xlsx and on the next run the file name will be C:\mypath\file_name_124.xlsx.
As for the tables, the data may look like this...
| Customer Number | Product Name | Order Date |
| ABC123 | Orange | 12/01/2024 |
| BGR987 | Orange | 02/15/2025 |
| ABC123 | Apple | 02/15/2025 |
| FRO987 | Pickle | 03/10/2025 |
| BGR987 | Cabbage | 09/10/2025 |
| ABC123 | Cabbage | 05/23/2025 |
One tab label would be ABC123 with all of the details for that customer, another tab label would be BGR987 with all of the details for that customer, etc.
Is there a way to do this and ideally it won't require a macro as macros make my head hurt. :-)
But I will do whatever is necessary.
TYIA