Code:
{title_sort:'contains(t=uppercase(re($, '^\W*(\w).*$','\1')), '\d', '0-9', t)'}
In a column, this has the first letter of a title (0-9 are combined). An accented letter (É) displays separate than the standard one (E). Is there a way to merge them?
EDIT: Got it (not sure if transliterate should come before or after uppercase).
Code:
{title_sort:'contains(t=uppercase(transliterate(re($, '^\W*(\w).*$','\1'))), '\d', '0-9', t)'}