I have a datatable in two of my apps the formulas are different but but use the StartsWith function. I use them to filter out the requests and I would like to replace startswith so that it will search any word contained in the designated fields. Can you please help me to edit these formulas, while keeping them Delegable?
The first Formula
Sort(
Filter(
'Expense App List New',IsBlank(Filter_By_Item_TextInput.Text)||
StartsWith(Description,Filter_By_Item_TextInput.Text),
IsBlank(FIlter_by_Common_Supplies_Dropdown1.Selected.Supplies)||
CommonSupplies = FIlter_by_Common_Supplies_Dropdown1.Selected.Supplies,
IsBlank(Filter_By_Supplier_TextInput4.Text)||
StartsWith(Suppliers,Filter_By_Supplier_TextInput4.Text),
IsBlank(LookUp_Category_Dropdown2.Selected.Category)||
StartsWith(Category,LookUp_Category_Dropdown2.Selected.Category)
),
ID,Descending
)
here is the second Formula.
With(
{
wActive: Filter(
'Mis-Etched Details',
CurrentStatus = "Can't Replace" ||
CurrentStatus = "Checking on Replacement Parts" ||
CurrentStatus = "Complete" ||
CurrentStatus = "Configs Purchased" ||
CurrentStatus = "Dropped off to Repairs" ||
CurrentStatus = "Given to B-Stock" ||
CurrentStatus = "Liquidated" ||
CurrentStatus = "Repaired and Restocked" ||
CurrentStatus = "Repairing Unit" ||
CurrentStatus = "VRMA'ed" ||
CurrentStatus = "Waiting For Approval"
)
},
Sort(
Filter(
wActive,
IsBlank(Tech_Name_Search_TextInput1_2.Text) ||
StartsWith(Mis_EtchedBy,Tech_Name_Search_TextInput1_2.Text),
IsBlank(Filter_by_EDC_TextInput.Text) ||
StartsWith(EDC,Filter_by_EDC_TextInput.Text),
IsBlank(Filter_by_Serail_TextInput.Text) ||
StartsWith(SerialNumber,Filter_by_Serail_TextInput.Text),
IsBlank(Filter_by_Manufacturer_TextInput.Text) ||
StartsWith(Description,Filter_by_Manufacturer_TextInput.Text),
IsBlank(Filter_Current_Status_Dropdown1_2.Selected.Status) ||
CurrentStatus = Filter_Current_Status_Dropdown1_2.Selected.Status),
MisEtchedDate,
If(SortDescending1,Ascending, Descending
)
)
)