Hi Experts,
I am kinda new to Powerapps and having issues adding additional filters to my Gallery, I have a SharePoint List data named "Payment Center Request" and 2 combo box, but I would also like to filter the result between the date period specified.

Here's my code without the calendar picker:
If(
ComboBox1_3.Selected.Value = Text("All Records"),
If(
ComboBox1_2.Selected.Value = Text("All Records"),
'Payment Request Center',
Filter(
'Payment Request Center',
'Request type' = ComboBox1_2.Selected.Value
)
),
Filter(
If(
ComboBox1_2.Selected.Value = Text("All Records"),
'Payment Request Center',
Filter(
'Payment Request Center',
'Request type' = ComboBox1_2.Selected.Value
)
),
AppStatusFilter = ComboBox1_3.Selected.Value
)
)
using the below code, filter the result from the date but not sure how I can integrate this to the previous code.
Filter(
'Payment Request Center',
'Request Date' >= dte_StartDate.SelectedDate,
'Request Date' <= dte_EndDate.SelectedDate
)
Thanks in advance!