Hey dear Community members!
I just can't get any further, and everything I find on the net doesn't work or confuses me even more. What I want to do should actually be quite simple and yet I am losing my mind!
I have a SharePoint list and in one column we write tags that match the topic - this is a Managed Metadata column.
Currently I have a gallery that is searched with the following code.
SortByColumns(Search(Filter('MY LIST'; !'Toggle'.Checked || ('Toggle'.Checked && 'Flow Variable' = "Approved") ); searchbox.Value; "Title"); "Title"; Ascending)
This works perfectly. Now I want to search not only via title, but also in the tags (Managed Metadata). But it just doesn't work and I figure it out. I thought I could just bring in the "tags" as a search value as well, but that doesn't work.
SortByColumns(Search(Filter('MY LIST'; !'Toggle'.Checked || ('Toggle'.Checked && 'Flow Variable' = "Approved") ); searchbox.Value; "Title" & "Tags"); "Title"; Ascending)
Then I tried differently and created a combobox, but here I just get the values 0 - 19 and not the available tags.
Sort(Choices('MY LIST'.Tags); Value; Ascending)
Any ideas?