CcConvertCase

Google Sheets Case Conversion โ€“ LOWER, UPPER, PROPER

Published 2026-01-28 ยท convertcase.in

Google Sheets offers the same case functions as Excel. Here is how to use them with practical examples.

Try it now โ€” free instant conversion

No signup ยท No limits ยท Works on all devices

Open ConvertCase โ†’

1Functions

=LOWER(A1) โ†’ lowercase
=UPPER(A1) โ†’ UPPERCASE
=PROPER(A1) โ†’ Title Case (every word capitalised)

2Sentence Case Workaround

No native sentence case in Sheets. Use: =UPPER(LEFT(A1,1))&LOWER(MID(A1,2,LEN(A1))) โ€” capitalises only the first character.

Frequently Asked Questions

Is Google Sheets PROPER the same as title case?

PROPER capitalises every word including "the", "and", etc. True title case requires manual rules or a third-party tool.

Related Guides

Convert Uppercase to Lowercase in ExcelFree Title Case Converter OnlineConvert Case in Python โ€“ Methods & Examples