when I tested with 266 records, then below both worked fine. It filters same number of records
Filter(TblSvcHist,StartsWith(SerialNo,TextSearchBox1.Text))
Filter(TblSvcHist,TextSearchBox1.Text in SerialNo)
BUT when I tested with around 3000 records, both does not bring the same result
Filter(TblSvcHist,StartsWith(SerialNo,TextSearchBox1.Text)) - This brings correct result
Filter(TblSvcHist,TextSearchBox1.Text in SerialNo) - This bring abnormal all the search having the same result of 100 records
Advantage/preference I give to second formula of "TextSearchBox1.Text in SerialNo" as it does the work same like
*text*
Confused, how to solve this, the one i prefer is bringing the wrong result. while both should bring the same result.
Please advise