Hi,
I have a list of users displayed and organized alphabetically and I would love to make a more visual cue of it so I am trying to achieve this by having the letter on Top and the respective user's names just after it. So, I was wondering what's the best and simplest way to do this.
Best regards,
Azhar
Hi Azhar,
off the top of my head, my method would be to first make a static entity with all the letters of the alphabet, then have a filter in your users aggregate in a way like such:
substr(Users.Name, 0, 1) like "%" + Entities.Alphabet + "%"
This would cut the user name to the first letter then compare it to the current letter in the static entity.
then somehow repeat this for each letter in the static entity.
otherwise, see this forum post:
Summarize by first letter | OutSystems