I created a tabbed gallery and have a sharepoint list, Similar to the video https://www.youtube.com/watch?v=if_mFIfi5PM
I added a global variable on the home page, which I pass on to the tabbed gallery. I want the tabbed gallery to show records that match the global version number .
However I am not sure how to compare the value of the global variable against the table data that is loaded in the gallery.
Home page
I set the global variable and pass it on the different pages
Set(Gversion,Dropdownversion.SelectedText); Navigate(tdlcGenerator,ScreenTransition.None)
In my Questions gallery page, my gallery displays data
This works and shows all the data
SortByColumns(Filter('TQtable',qSearchText.Text in Question),"DisplayOrder",Ascending)
I tried the following so I can filter on the global version variable that I pass to this page , the following do not work. Note that I can see the value of the global variable
SortByColumns(Filter('TQtable',qSearchText.Text in Question,'TQtable'.tdlcVersion in Gversion.Value),"DisplayOrder",Ascending)
hard cording did not work either
If ('TQtable'.tdlcVersion in 4,SortByColumns(Filter('TQtable',qSearchText.Text in Question),"DisplayOrder",Ascending))
If ('TQtable'.tdlcVersion in Gversion.Value,SortByColumns(Filter('TQtable',qSearchText.Text in Question),"DisplayOrder",Ascending))
thanks and appreciate the help