I'm new to the powerapp space so apologies if this is a daft question.
within my powerapp I’ve built 3 tabs where tab 1 is the default tab. Tab 1 will return everything in my data source and when tab 2 is selected by the user it filters and returns everything where the answer to the question is yes. I’m using the below function
Switch(
varTabSelected,
1,
'Signal Prep Sheet',
2,
Filter(
'Signal Prep Sheet',
'Is another prep shift required?'.Value = "Yes"
)
)
I would like to now add tab 3 where if selected it would filter my data source (signal prep sheet) and find the question (is another prep shift required). Value = ‘no fully prepped’ and return the results in my gallery.
Any help would be appreciated.
thanks