Hello there,
my goal is to filter some data inside my app using a specific column "Status" from collection "coll_Baust". "coll_Baust" is a collection made from a SharePoint list, where the column "Status" is a Choice-Column.
The problem is, the value of "Status" is a nested table. So I have to convert this data before to text.
First try:
create a collection and add a column to insert the concat-text-value of "Status"
ClearCollect(coll_Baust; '239_Baustellen');;
AddColumns(coll_Baust; "Stat_Baust"; ForAll(coll_Baust; Concat(coll_Baust.Status;"")));;
Result:
collection is made properly, no column and no values are added.
Second try:
The SharePointList is long, so I decide to get just a few column I will work with and add then the new column inserting the status-text.
ClearCollect(coll_Baust; '239_Baustellen'.Status; '239_Baustellen'.Name; '239_Baustellen'.Kode);;
AddColumns(coll_Baust; "Stat_Baust"; ForAll(coll_Baust; Concat(coll_Baust.Status;"")));;
Result:
Collection is made, first column ist ok (table), second and third columns are empty 😮
Could someone please help me to find out what I am doing wrong and how I can achieve my goal?
Thank you very much 😄
p.s. for some reason I have to use ; separator inside formula and ;; separator at end - maybe country-settings (europe/italy)