Help

This Product Ideas board is currently undergoing updates, but please continue to submit your ideas.

We still need a simple TITLE CASE (PROPER) function alongside UPPER and LOWER

cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Markus_Wernig
8 - Airtable Astronomer
8 - Airtable Astronomer

Users have been calling for a simple TITLE CASE / PROPER function since 2016.

And I know, there is @Bill.Frenchโ€™s wonderful script - Field Tweaker - that allows you to reformat a field as either UPPER, LOWER, or TITLE CASE.

However, the script doesnโ€™t work when the field is a computed field, as it is in my case.

The fields I need text formatting control over are computed from different sources. I need versions of those fields that are UPPER CASE - which is easily achieved via the UPPER() function - but I also need TITLE CASE versions (for reasons I donโ€™t want to bore anyone with).

Again, if there was a standard PROPER() function in Airtable, this would be a piece of cake.
I am sure I am not alone with this request.

16 Comments
Tim_Mackey
6 - Interface Innovator
6 - Interface Innovator

Thanks for this function, @gxjansen! I created my own modified version of it thatโ€™s a little more flexibleโ€”the original formula wasnโ€™t able to handle symbols like parentheses, hyphens, and quotation marks, which my new formula does. Additionally, I cut the number of REGEX_REPLACE() functions in half by using multi-option capturing groups. Now only a single REGEX_REPLACE() function is needed for each letter of the alphabet.

Example

Hereโ€™s a super contrived example:

The โ€œtrickโ€ to โ€œbeingโ€ [healthy] (and happy!) and โ€˜wiseโ€™ {forever} โ€˜we promiseโ€™

Hereโ€™s what you would get with the old formula (i.e. many words arenโ€™t capitalized):

The โ€œtrickโ€ To โ€œbeingโ€ [healthy] (and Happy!) And โ€œwiseโ€ {forever} โ€˜we Promiseโ€™

Hereโ€™s what you get with the new formula:

The โ€œTrickโ€ To โ€œBeingโ€ [Healthy] (And Happy!) And โ€œWiseโ€ {Forever} โ€˜We Promiseโ€™

Complete function:

Copy and paste the complete function below into your formula, and replace {YOUR FIELD NAME HERE} with the correct field name.

REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
REGEX_REPLACE(
{YOUR FIELD NAME HERE},
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)a", "$1A"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)b", "$1B"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)c", "$1C"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)d", "$1D"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)e", "$1E"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)f", "$1F"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)g", "$1G"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)h", "$1H"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)i", "$1I"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)j", "$1J"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)k", "$1K"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)l", "$1L"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)m", "$1M"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)n", "$1N"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)o", "$1O"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)p", "$1P"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)q", "$1Q"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)r", "$1R"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)s", "$1S"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)t", "$1T"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)u", "$1U"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)v", "$1V"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)w", "$1W"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)x", "$1X"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)y", "$1Y"),
"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)z", "$1Z")

If the formatting of the formula is giving you trouble, hereโ€™s the formula compressed onto a single line:

REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE({YOUR FIELD NAME HERE},"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)a", "$1A"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)b", "$1B"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)c", "$1C"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)d", "$1D"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)e", "$1E"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)f", "$1F"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)g", "$1G"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)h", "$1H"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)i", "$1I"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)j", "$1J"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)k", "$1K"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)l", "$1L"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)m", "$1M"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)n", "$1N"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)o", "$1O"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)p", "$1P"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)q", "$1Q"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)r", "$1R"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)s", "$1S"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)t", "$1T"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)u", "$1U"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)v", "$1V"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)w", "$1W"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)x", "$1X"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)y", "$1Y"),"(^| |\(|\[|\{|-|\"|[ ^]\'|โ€œ|โ€˜)z", "$1Z")

Notes

Each regex function has the following capture group:

(^| |\(|\[|\{|-|\"|[ ^]\'| โ€œ| โ€˜)

This is a list of symbols, separated by the pipe symbol (|) which means โ€œorโ€. You can add or remove symbols as you please, always separating them with a pipe. Hereโ€™s the list of symbols Iโ€™m currently matching on with explanations:

^        โ† Line start
\(       โ† Parentheses
\[       โ† Square Bracket
\{       โ† Curly Brace
-        โ† Hyphen, ensures that hyphenated words are properly capitalized, e.g. Empty-Handed
\"       โ† Double quote
[ ^]\'   โ† Single quote. must be preceded by a space or at line beginning, this is to avoid matching apostrophes
 โ€œ       โ† Double curly quote
 โ€˜       โ† Single curly quote

Important: this formula no longer converts the original text to lower case before capitalizing. I made this decision because there are many cases when doing this would result in incorrect capitalization. A couple examples:

  • Family names: McCabe would become Mccabe if we converted to lowercase first
  • Common acronyms: LED, DIY, ATM would become Led, Diy, Atm

If the input text youโ€™re dealing with has a lot of ALL-CAPS you want to get rid of and you donโ€™t care about incorrect capitalizations like the one above, you can put the initial lowercase transformation back in by adding LOWER() around the field name, like so:

LOWER({YOUR FIELD NAME HERE})
Melinda_Lee
4 - Data Explorer
4 - Data Explorer

Chiming in to ditto this request.

Shayne_Bundy
6 - Interface Innovator
6 - Interface Innovator

Is there a way to adjust this for situations where there is a space in the {First Name} field? Such as if they had a first and middle name entered there, both in all caps, and I wanted to correct it?
Thank you!

claimdepot
5 - Automation Enthusiast
5 - Automation Enthusiast

Please please please implement this @ Airtable

Stephanie_Reid
5 - Automation Enthusiast
5 - Automation Enthusiast

@Markus_Wernig 

Preface: Though I'm late to the thread, I share your consternation (as do many).  After an utterly disappointing attempt to have Airtable AI generate a formula that would efficiently solve this formatting pain point, which produced invalid and baffling results (including generating formulae functions that don't exist in AT, and then generating invalid "fix suggestions" to correct its own errors and fabrications), I gave up on elegance and went back to my layman, multiple formula methodโ€”I call it chunk-n-clunk. It's not particularly streamlined or pretty, but hey, it works. I'm including it here in case anyone else in the "no code" camp just needs something that gets the job done.

Our Use Case: My company (a music publisher and record administrator) receives a continual influx of large datasets from multiple external sources. These sources return values in UPPER CASE, but we use and display values in Title Case. Automations are not a viable solution because of volume, and text formatting capabilities.

Solution: 3-formula sequence, where the 3rd formula results in text displayed in Title Case.

  • {FORMULA 1}

 

 

LOWER({FIELD WITH UPPERCASE TEXT})

//
RESULT: "SONG TITLE HERE" -> "song title here"

 

 

  • {FORMULA 2}

 

 

UPPER(LEFT({FORMULA 1}, 1)) & LOWER(MID({FORMULA 1}, 2, LEN({FORMULA 1}) - 1))

//
RESULT: "song title here" -> "Song title here"

 

 

  • {FORMULA 3}

 

 

REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE({FORMULA 2}, " a", " A"), " b", " B"), " c", " C"), " d", " D"), " e", " E"), " f", " F"), " g", " G"), " h", " H"), " i", " I"), " j", " J"), " k", " K"), " l", " L"), " m", " M"), " n", " N"), " o", " O"), " p", " P"), " q", " Q"), " r", " R"), " s", " S"), " t", " T"), " u", " U"), " v", " V"), " w", " W"), " x", " X"), " y", " Y"), " z", " Z")

//
RESULT: "Song title here" -> "Song Title Here"

 

*Others have suggested the REGEX_REPLACE function in various iterations, so thanks to all who gave examples. I pared the above down from previous examples, and preceded it with the other 2 formulae to get it to work as expected for our use-case.

Conclusion: If you have a volume of varied text strings that ultimately needs to be formatted in Title Case (AKA Proper Case), you can achieve it in 3 formula steps by

  1. Converting all text of your {FIELD WITH UPPERCASE TEXT} (or {Field with Text}, however it appears) to lowercase: {FORMULA 1}
  2. Capitalizing the first letter of the first word of the preceding formula's calculation: {FORMULA 2}
  3. From {FORMULA 2}'s calculation, replacing any single space followed by a lowercase letter with a single space followed by a capital letter: {FORMULA 3}

There is probably a better way to achieve this, but I couldn't find one. SO, if you're stuck like I was, hopefully this can help.

Cheers!

 

 

Tim_Mackey
6 - Interface Innovator
6 - Interface Innovator

I just wanted to add a note that I thought I found a simpler solution to this problem by using the uppercase flag in the Regex replacement string like so:

\U$1

but sadly this isn't supported by Airtable's Regex functions. For reference, Airtable uses the RE2 Regex library. Thankfully the solution I posted previously still works! (I needed it today, lol)