Hello All - I have this formula that filters gallery based on various drop down filters I have and along with that, I would like to filter the data so that data for current month is only displayed after 11th of the month. For the underlined data, I get a delegation.
Award Month is a Calculated Column and Month(Created) is also heading into delegation. My database will be crossing 2000 records in 2 months. Is there a work around
2) Since I will start a new fiscal year, Can I start my filter based on FY25 and then the others so that the delegation can be handled?
SortByColumns( Filter( 'SPLIST', (StartsWith( 'Employee Name', SearchAssociateID_Name.Text ) || StartsWith( 'EEID', SearchEEID_Name.Text )) && (('Name of SLT'.Value = DrpDwnSLT.Selected.Value) || (DrpDwnSLT.Selected.Value = Blank())) && (('Award Name'.Value = DrpAwardName.Selected.Value) || DrpAwardName.Selected.Value = Blank()) && (('Name Of Manager' = DrpDwnNameofManager.Selected.Value) || (DrpDwnNameofManager.Selected.Value = Blank())) && (('Fiscal Year'.Value = DrpFY.Selected.Value) || (DrpFY.Selected.Value = Blank())) && ((('Award Month') = DrpAwardMonth.Selected.Value) || (DrpAwardMonth.Selected.Value = Blank()) && (Month(Created) <> Month(Today()) || Day(Today()) >=11 && Day(Today()) <= 31))) , "Created", SortOrder.Descending )