I want to search only first letter of every data not the similar letter present in the data
how can i achieve this , what filter i need to use
Hi Shalini,
You can use this filter in the aggregate.
Hope this helps
ThanksNeha
Yes it worked for me Thank You.
Hi @Shalini D M,
You can use the substring to get the first letter.
Substr(Entity.Name, 0, 1)
But in case you want to make the search function. The best practice is you can prefer to use the like "%" syntax. The example syntax is like this:
SearchKeyword = "" or Entity.Name like SearchKeyword + "%"
Thanks hopefully can help you.