Enhancement: Ignore case when sorting a list

Currently when sorting a listin alphabetical order, uppercase letters appear first and lowercase second in the order of the English alphabet. See below example.

I think it a better implementation would be to ignore the case when sorting the list.

This would be nice as an option on the sort menu I agree. For now you could use the formula field as a workaround by:

  1. Make a new formula field
  2. Give it the formula lower(field('my field'))
  3. Now sort the formula field instead.
1 Like

That does the trick for now! Thanks! :smiley: