Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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"
Use this
capitalize('Hello WORD')
and if you want through out your field then
Capitalize(FieldName)
hope this helps
=Capitalize('Hello WORD')
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"
you may use UPPER() or LOWER() to make the field values to a particular case.
Thank you for your response has been very useful to me