I have Gallery1 (SPList1/Collection1)
I have RadioControl1 (with three options - 'Subject', 'Status', 'Created By'.
I have ComboBox1, which I am using to search Gallery1.
How do I set the Gallery1 Items to display data based on the choice in RadioControl1 and the content entered into ComboBox1?
I have the following in FilterByCategoryRadioCntrl -
Items - ["Subject", "Status", "Created"]
I have the Following in ComboBox1 -
ComboBox1 - Switch(FilterByCategoryRadioCntrl.Selected.Value,
"Subject", RenameColums( Distinct(Collection1, Title), "Result", "Value"))
"Status", [" ", "Under Review"],
"Created By", RenameColumns( Distinct(Collection1, 'Created By), "Result", "Value"))
What do I need in Gallery1 so that is filters and switches based on the 'FilterByCategoryRadioCntrl' selection and 'ComboBox1' search content?