> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/propercase.md).

# ProperCase

Returns an input string with the first letter of each word in uppercase and the subsequent letters in lowercase.

```mathematica
ProperCase("hello world") → "Hello World"
ProperCase("New YoRK CIty") → "New York City"
```

#### Inputs

`ProperCase(string)`

* `string` - A text value
