Hello,
I have a ComboBox with multiple selection of years (2018, 2019 & 2020) which come from Distinct values in my "Spending Report" table.
I am trying to filter a gallery to show projects that had spending during the selected year or years. This is my current code that does not work, since FY_ComboBox.Selected.Result is a table of values.
Filter(
ProjectList,
ProjectNum in Filter(
SpendingReport,
FYNum = FY_ComboBox.Selected.Result,
).ProjectValue
)
What I want my script to do is:
1. Filter SpendingReport where column FYNum is any of the selected values in FY_ComboBox
2. Show me gallery items where ProjectNum exists in the column ProjectValue of Spending Report that has been filtered.