Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a drop down selection Indicator (small triangle on field name) on field that allows me to select by typing characters on clicking that triangle.
I have some other fields which has strings with alphabets and special characters like question marks, stars, plus sign etc. I am able to select the alphabets through selection by typing alphabets in selection dropdown
for e.g if I type "a" , all the strings with "a" in them shows up .
But I am unable to search the special character values.
so for instance if I type "?" , nothing shows up as a result in search.
Is there a way that I can search for these special characters in values?
It may not be pretty, but you can use this function in the search:
=index(Country, '?')
=index(Country, '+')
...etc
Hope this helps!
It may not be pretty, but you can use this function in the search:
=index(Country, '?')
=index(Country, '+')
...etc
Hope this helps!
Thank you so much ..!! It worked