Hi All - I am trying to maintain consistency between about 1,500 names in my data set. The names include hyphens, such as Ann-Marie and apostrophes, such as O'Connor. Using just a titlecase formula converts the names to "Ann-marie" and "O'connor" respectively. I tried to use a formula to correct the issue, but was only able to fix 1 of the 2 issues. The formula I used to fix hyphenated names is shown below, however, I cannot seem to figure out how to amend this to also work with the apostrophe issue. I also tried to use Regex replace formulas but I was unsuccessful in deciphering how the formula works.
Replace(TitleCase(ReplaceChar([Manager Lvl 2], "-", '$')), '$',"-")
Any help is greatly appreciated!