- How does PROPER handle hyphenated or apostrophe-containing words?
- PROPER treats the character after a hyphen, apostrophe or space as the start of a new word, so "co-op" becomes "Co-Op" and "chef's" becomes "Chef'S". If you need finer control, combine PROPER with SUBSTITUTE to replace the delimiter temporarily.
- Can PROPER be used on numbers, dates or Boolean values?
- PROPER will coerce numbers and dates to text but will not change their visual representation; the result looks identical to the input. For formatting numbers or dates you should use TEXT or the dedicated number-formatting functions.
- Why does PROPER return #VALUE! when I reference an entire column?
- Older versions of Excel expect a single scalar argument, so referencing a whole column (e.g., =PROPER(A:A)) triggers #VALUE!. In Excel with dynamic arrays the same formula returns an array of title-cased strings. Use a helper column or upgrade to a newer version for automatic spilling.
- Is PROPER aware of non-English characters like é, ñ, or ß?
- Yes. PROPER respects the workbook’s locale and will correctly capitalise characters with diacritics, such as turning "jalapeño" into "Jalapeño". However, language-specific rules (e.g., Turkish dotted-i) depend on the system’s language settings.