Hello folks I'm always asking for help and everything but have become pretty dang proud with one of my creations I needed to share. If anyone runs into the problem of having to show [lastname], [firstname] and also get the capitalization right it can be a pain. Espically if, like in my case all the letters are in uppercase.
Well, here is a formula that will get you Last, First no matter the legnth of the fields or their current case state. I'm sure one of the pros could probably polish this up some but hopefully this will be of use to someone.
---
Uppercase(left({LAST_NAME},1)) &
Lowercase(right({LAST_NAME},Len({LAST_NAME})-1)) & ", " &
Uppercase(left({FIRST_NAME},1)) &
Lowercase(right({FIRST_NAME},Len({FIRST_NAME})-1))
-----
Well, here is a formula that will get you Last, First no matter the legnth of the fields or their current case state. I'm sure one of the pros could probably polish this up some but hopefully this will be of use to someone.
---
Uppercase(left({LAST_NAME},1)) &
Lowercase(right({LAST_NAME},Len({LAST_NAME})-1)) & ", " &
Uppercase(left({FIRST_NAME},1)) &
Lowercase(right({FIRST_NAME},Len({FIRST_NAME})-1))
-----