Hi all,
Apologies if this has been asked before as I could not find the correct answer or an example to this.
Could you advise (with example if possible), how could I dynamically output into multiple tabs in 1 excel file?
Example of Input:
ID| Name | Customer_Type
1 | MAX | VIP
2 | John | B2B
3 | Mark | VIP
4 | Sue | VIP
5 | Jane | LostContact
6 | Cindy | VVIP
Example of Output file (excel):
Sheet Name: | VIP | B2B | LostContact | VVIP |
| | ID| Name | Customer_Type 1 | MAX | VIP 3 | Mark | VIP 4 | Sue | VIP | ID| Name | Customer_Type 2 | John | B2B | ID| Name | Customer_Type 5 | Jane | LostContact | ID| Name | Customer_Type 6 | Cindy | VVIP |
Right now, I have like 20++ customer types and I used the block until done and filter tools to "hardcode" the result.

However, I am expecting new customer type coming in. Therefore, is there a more efficient way to dynamically do this?
Thanks in advance.