Hey everyone,
I've got a SharePoint list with columns that contain data in the following format, since they're imported lookups from a different list:
{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":1234,"Value":"XYZ"}
I managed to extract the values in a gallery with:
Text(ParseJSON(ThisItem.SampleColumn).Value).
My problem is, that I want to use the extracted values in a filter and I can't use the ParseJSON itself, because it has to be delegable. So my idea was, to put the following function in my OnStart, to collect all the necessary values in a column:
AddColumns(SharePointList,"NewColumnName",Text(ParseJSON(SampleColumn).Value))
This doesn't seem to work though, as it doesn't create a new column for me at all. Is there a different way I could try, to make the values usable? Preferably without an additional workflow. Would this cause performance issues on app start?
Thank you