Hello,
i'm trying to create a collection from an SP list multi choice column.
I need to lookup an employees name and then create a collection of multiple selected items within the 'Category' multi choice column record. Currently if i do it, the collection is a nested table with one row and then all the values in that. I need them all as their own values to create a lookup to it.
ClearCollect(colLicenseInfo,Distinct(Filter(SPList,Employee.DisplayName=DataCardValue21.Selected.DisplayName),Category))
Help appreciated