Hi All,
I would like to know if its possible to combine 2 formulas for the browse gallery.
1. Filter Gallery act as a filter for status.
2. Date Picker act as a date filter.
My formula for the Filter Gallery:
If(ThisItem.Title="Active",UpdateContext({type:"Active"}),If(ThisItem.Title="Pending",UpdateContext({type:"Pending"}),If(ThisItem.Title="Acknowledged",UpdateContext({type:"Acknowledged"}),If(ThisItem.Title="Resolved",UpdateContext({type:"Resolved"}),If(ThisItem.Title="Overall Alerts",UpdateContext({type:"Overall Alerts"}))))))
My formula for the Browse Gallery:
If(type="Overall Alerts", 'MS Teams Alerts', If(FilterGallery.Selected.TextBox1.Text="Active",Filter('MS Teams Alerts',type in Status),If(FilterGallery.Selected.TextBox1.Text="Pending",Filter('MS Teams Alerts',type in 'Admin Status'),If(FilterGallery.Selected.TextBox1.Text="Acknowledged",Filter('MS Teams Alerts',type in 'Admin Status'),If(FilterGallery.Selected.TextBox1.Text="Resolved",Filter('MS Teams Alerts',type in Status))))))
I would like to include this formula:
Filter('MS Teams Alerts',Text('Date Received', "[$-en-US]mm-dd-yyyy")=Text(DatePicker1.SelectedDate, "[$-en-US]mm-dd-yyyy"))
For me to see my data per date and per status. Thank you.
Solved! Go to Solution.
Hi @heydamianards ,
I found that you have posted same thread in current forum already, please check my response within the following thread:
If you have solved your problem, please consider go ahead to click "Accept as Solution" to identify this thread has been solved.
Best regards,
I'm not entirely sure why all the context variables in your formulas, but you can get rid of them and try changing your formula for the Browse Gallery to the following:
Filter(
'MS Teams Alerts',
FilterGallery.Selected.Title in Status
&& 'Date Received' = DatePicker1.SelectedDate
)
If your 'Date Received' contains time information, then you can utilize either the Text function that you had, or the Date function to compare date to date. Something like this:
Filter(
'MS Teams Alerts',
FilterGallery.Selected.Title in Status
&& Date(Year('Date Received'), Month('Date Received'), Day('Date Received) = DatePicker1.SelectedDate
)
-or-
Filter(
'MS Teams Alerts',
FilterGallery.Selected.Title in Status
&& Text('Date Received', ShortDate) = Text(DatePicker1.SelectedDate, ShortDate)
)
I hope this is helpful for you.
Hi @heydamianards ,
I found that you have posted same thread in current forum already, please check my response within the following thread:
If you have solved your problem, please consider go ahead to click "Accept as Solution" to identify this thread has been solved.
Best regards,
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
207 | |
98 | |
60 | |
55 | |
52 |
User | Count |
---|---|
257 | |
161 | |
87 | |
79 | |
68 |