Re: filter by sharepoint id column
Hi @AshishJaiswal ,
Please first make sure the single StartsWith part is working for the current search text:
SortByColumns(
Filter(
'DWP Exceptions Tracker',
StartsWith('Customer Name',InputSearchID.Text)
),
"Created",
Ascending
)
If it works, try below formula instead:
SortByColumns(
Filter(
'DWP Exceptions Tracker',
Or(
StartsWith('Customer Name',InputSearchID.Text),
ID = Value(InputSearchID.Text)
)
),
"Created",
Ascending
)
I'm wondering about one thing. As you said it works for the ID column, the search text you have entered must be a number. So, are the customer names all begin with numbers as well? This seems a bit strange. Below is my test result screenshot:

Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.