I have a searchbox-textbox
I have Radio button with 3 choices
I have a gallery with the items set to below
The sharepoint list contains 4,888 rows
If(rdo_SearchFields.Selected.Value = "Escalation Id", Filter(t_pricing_escalation_master,StartsWith(Text(PRICING_ESCALATION_ID),txt_SearchText.Text)),
rdo_SearchFields.Selected.Value ="Account Name", Filter(t_pricing_escalation_master,StartsWith(ACCOUNT_NAME,txt_SearchText.Text)),
rdo_SearchFields.Selected.Value ="Account Number", Filter(t_pricing_escalation_master,StartsWith(ACCOUNT_NUMBER,txt_SearchText.Text)))
Getting a delagation alert because of the Startswith function ?
Can this be re-written to get around the issue
Dave