My org has a list in SharePoint the contains one column that is of type Choice, with the "Checkboxes (allow multiple selections)" option.
I'm using GetItems from the SharePoint connector in an online PowerAutomate flow to try to pull values from this SharePoint list, and export it as a pipe-delimited CSV.
But the connector does not seem to be able to pull the selected values from this Choice/Checkbox column.
GetItems is set up to pull all active items
And then I have a Create CSV Table action, that has custom columns (required different header values). The "Channels" column is the multi-select Choice column in the SharePoint list.
If I pick the column from the Dynamic Content picker (as "Channels Value"), the value of the column just reverts to "item()?['Value']", and returns a null value when the flow is run.
If I try to hardcode "item()?['Channels']?['Value']", the flow fails with "The template language expression 'item()?['Channels']?['Value']' cannot be evaluated because property 'Value' cannot be selected."
How can I retrieve the value of this Choice column that could have multiple values selected?
TIA