Hi,
Could you elaborate how are you showing values in the Gallery?
If you are not already doing it. here are the steps to do so.
1. Within your Canvas App, Go to View --> Datasources and add your datasource (from where you want to get and who data)
2. In your Screen Add a Combobox (In the menu go to Insert --> Controls --> combobox)
3. Select the screen and go to Onvisible Property and write formulae ClearCollect(colData,{Id:"ALL"},Datasource) (Replace Datasource with your relevant datasource/datatable name. Id column replace with display text column of your datasource)
4. In the combobox properties go to Items and write colData. In Display Fields property --> (mention the column which you want to show in combobox)
5. Insert a Blank Horizantal Gallery in your screen (Insert --> Gallery --> Blank Horizantal) in the Items property mention the formulae
If(combobox1.selected.id = "ALL" , colData,combobox1.selecteditems).
//Above formulae means if user selects ALL in the combobox it shows all data which you got from datasource, otherwise it only shows record which users has selected.
In Gallery add required columns which you want to show.
if this answers your question mark it as verified and give thumbs up
Regards,
Pavan Kumar Garlapati