ProjectStart_Year
that extracts and stores the year as a Date/Time (e.g., "2023"). I want to allow users to filter the gallery using a search bar (which already works as my code shows) and the year using a dropdown.If(
IsBlank(SearchBar.Text),
'Data Source',
Filter('Data Source', StartsWith(Title, SearchBar.Text))
)
With(
{
_Start: Date(Year(YourReferenceDate), 1, 1),
_End: Date(Year(YourReferenceDate), 12, 31)
},
Filter(
'Data Source',
StartsWith(
Title,
SearchBar.Text
) &&
YourDateField >=_Start && YourDateField <= _End
)
)
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1