Greetings all,
I have a power app that is working fine for Open, closing tasks based on a sharepoint list. The first page is a gallery page showing the list contents. I currently have a sort and filter working with a search box. The gallery displays all Open items first and by newest. I would like to add the ability to filter by all open or all closed items using buttons, radio button or checkbox but any time I add them in the gallery does not display correct. I can get buttons to work by themselves, radio to work by itself and even check box to work by itself but i am not sure why it is not working when i stack in in the below sort/filter of the gallery.
SortByColumns(
Filter(
'Fire System Impairment Log',
(StartsWith(
ImpairTitle,
srchbox.Text))),
"Status_x0028_A_x0029_",Descending,"ID", Descending)
All the below have worked independently but I can't seem to get the functionality when adding to the above.
If(varSelection="ALL",'Fire System Impairment Log',Filter('Fire System Impairment Log','Status(A)'=varSelection))
If(IsBlank(VarFilter),'Fire System Impairment Log',Filter('Fire System Impairment Log','Status(A)'=VarFilter))
Filter('Fire System Impairment Log','Status(A)'=Radio1.Selected.Value)
Any and all help is greatly appreciated!