Hello Experts,
I am trying to search alphabetically in list but search keyword is searching in overall elements. See below snapshot. if I type "a" then i should get options starting from "a" only. But now a is searching in overall text.
See below code:
Please suggest some solution.
Thanks and Regards,
Nayana
Hi Nayana,
your condition in the list filter is looking index(...)<>-1. This will return true if your search conditions were found in any place in your field. If you replace it for index(...)= 0 should work
Regards
Fabio