I have a Survey Form. I use power automate to update an Excel file every time a survey is submitted.
One of the survey questions is a ranking of items. The results of the ranking appears in a string separated by a comma.
example:
| Compensation/Career Opportunities, Champion Team Results/Recognition, Communication, Cross Team Collaboration, Meetings, Technology/Upskill, Value Employees and Customers, Vision & Strategy, Work Life Balance (improve for teams), None from this group | | | | | | | | | |
I need to split these ranked items out across 10 separate columns to look like:
| Compensation/Career Opportunities | Champion Team Results/Recognition | Communication | Cross Team Collaboration | Meetings | Technology/Upskill | Value Employees and Customers | Vision & Strategy | Work Life Balance (improve for teams) | None from this group |
I have not been able to figure out how to do this and have not found any other forum post that addresses this.
my flow looks like the following with the function(s):
fx split(Outputs('Compose'),',')[0]
split(Outputs('Compose'),',')[1]
split(Outputs('Compose'),',')[2] .... etc.
I am new to this and I know I am missing something but I don't know what I don't know.
