
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to capitalize the first letter of a string of words?
Good morning,
I am using data from multiple Excel documents.
In several of these words are in lowercase or uppercase, not respect criteria.
As the words I need to be with capital letter.
Example:
Hello WORD = Hello word
Thank you for your prompt response.
Thanks
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Capitalize will make the first letter of every word a capital. Capitalize('hello WORLD') = Hello World
If you only want the first letter of the whole text string to be caps, try this
upper(left(trim(data),1)) & lower(mid(trim(data),2,len(data)))
where data is the field containg the text you wish to change.
If data is "hello WORLD", this will become "Hello world"

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use this
capitalize('Hello WORD')
and if you want through out your field then
Capitalize(FieldName)
hope this helps

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=Capitalize('Hello WORD')


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Capitalize will make the first letter of every word a capital. Capitalize('hello WORLD') = Hello World
If you only want the first letter of the whole text string to be caps, try this
upper(left(trim(data),1)) & lower(mid(trim(data),2,len(data)))
where data is the field containg the text you wish to change.
If data is "hello WORLD", this will become "Hello world"


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you may use UPPER() or LOWER() to make the field values to a particular case.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for your response has been very useful to me
