Hello,
I am trying to filter/count CDS multiple selection field.
I would like to filter/count specific is included in multiple selection fields or not.
This is how I tried but not working.
Could someone advise me how to solve this?
😥

Hello,
I am trying to filter/count CDS multiple selection field.
I would like to filter/count specific is included in multiple selection fields or not.
This is how I tried but not working.
Could someone advise me how to solve this?
😥
Hi @Anonymous ,
Do you want to filter or countrows based on a multiple choice column?
1)Filter:
set the data table's Items:
Filter(
AddColumns(store,"subs",Concat(store_category_sub,Value&",")),
"jew" in subs
)
2)CountRows:
CountRows(
Filter(
AddColumns(store,"subs",Concat(store_category_sub,Value&",")),
"jew" in subs
)
)
Best regards,