Init Cap in Tableau
Tableau doesn't have an inbuilt function like TitleCase or InitCap or Proper.In order to overcome the issue to display the first letter in capitals below function comes in so handy
UPPER(LEFT([[String]],1)) + LOWER(MID([String], 2))
Comments
Post a Comment