I have a sample data set that looks like this:
| Resource Group | Resource Group tags | Subscription | Subscription tags |
| aaaa | env=prod;owner=bob;management=partial | wwww | subowner=jack;billing=13982 |
| bbbb | owner=sam;compliance=soc2;management=full | xxxx | subowner=jill;compliance=soc2;billing=13983 |
I know I can do text to columns and split the Resource Group tags into multiple columns delimited on the semicolon and then I end up with something that looks like this:
| Resource Group | Resource Group tags | Subscription | Subscription tags | Resource Group tags 1 | Resource Group tags 2 | Resource Group tags 3 |
| aaaa | env=prod;owner=bob;management=partial | wwww | subowner=jack;billing=13982 | env=prod | owner=bob | management=partial |
| bbbb | owner=sam;compliance=soc2;management=full | xxxx | subowner=jill;compliance=soc2;billing=13983 | owner=sam | compliance=soc2 | management=full |
Ideally, I would like the column header to look like this:
| Resource Group | Resource Group tags | Subscription | Subscription tags | env | owner | compliance | management |
| aaaa | env=prod;owner=bob;management=partial | wwww | subowner=jack;billing=13982 | prod | bob | | partial |
| bbbb | owner=sam;compliance=soc2;management=full | xxxx | subowner=jill;compliance=soc2;billing=13983 | | sam | soc2 | full |