HI,
I have a gallery which uses this function: Filter('Raise New Idea','Last Updated' <= Today() && 'Last Updated' > DateAdd(Today(),-7,Days)). To filter on the last 7 days from SharePoint list.
on another gallery I want to filter on the last 7 days but then filter on developer.displayname from combox
The current function on the new gallery is: Filter('Raise New Idea', Developer.DisplayName in ComboBox1.SelectedItems)
how do I combine: Filter('Raise New Idea','Last Updated' <= Today() && 'Last Updated' > DateAdd(Today(),-7,Days)) and Filter('Raise New Idea', Developer.DisplayName in ComboBox1.SelectedItems) together ?