PROPER

Capitalizes the first letter of each word in a text string

Description

The PROPER() function is used to capitalize the first letter of each word in a text string. It's helpful for standardizing text capitalization, making titles or names more presentable, or improving text formatting.

Syntax

PROPER(text)

  1. text: The input text string you want to capitalize correctly.

Example

Table

ID
Original Text

1

hello, world!

2

example text for users

3

sAvant aNaLyTiCs tutorial

Function

PROPER(`Original Text`)

Results

PROPER(Original Text)

Hello, World!

Example Text For Users

Savant Analytics Tutorial

Last updated