I was using the below code to filter the gallery and it was working fine:
Filter(TblMachHist,TextInput3.Text in SerialNo)
As the Sharepoint List is having more than 2500 records, so wanted to improve code for sure filter, so trying to apply the below for more powerful filter but it is producing error, could not understand the reason,
"With(
Filter(
TblMachHist,
Len(TextInput3.Text) = 0 ||
TextInput3.Text in SerialNo
)
)"
Please guide correction