Hi @Rohit-Ghare ,
It seems in your list these values begin with one or more spaces according to different levels. However, when you type 1 in search box, those items with " 1.1" or " 1.1.1" will not return.
If the list won't exceed 2000 items, you can use Trim function for the column names:
Filter(
'Accounting Data',
StartsWith('Account Code',Lower(TextInput1.Text)),
StartsWith(Trim('Account Name'),Lower(TextInput5.Text)),
StartsWith(Trim('Account Description'),Lower(TextInput6.Text)),
StartsWith('Account Type',Lower(TextInput7_1.Text)),
StartsWith(Trim('Aggr_ Level 1 '),Lower(TextInput7.Text)),
StartsWith(Trim('Aggr_ Level 2'),Lower(TextInput8.Text)),
StartsWith(Trim('Aggr_ Level 3'),Lower(TextInput8_1.Text)),
StartsWith(Trim('Aggr_ Level 4'),Lower(TextInput8_2.Text)),
StartsWith(Trim('Aggr_ Level 5'),Lower(TextInput8_6.Text)),
StartsWith(UD1,Lower(TextInput8_7.Text)),
StartsWith(UD2,Lower(TextInput8_8.Text)),
StartsWith(UD3,Lower(TextInput8_11.Text)),
StartsWith('Number of Documents attached',Lower(TextInput8_15.Text))
)
Best regards,