Hi,
I have a field "Text" user enters data try or Try Me
I want the result to be all in Caps:
TRY
TRY ME
Can anyone help please to do it with workflow?
Regards,
Sahil
Hi,
I have a field "Text" user enters data try or Try Me
I want the result to be all in Caps:
TRY
TRY ME
Can anyone help please to do it with workflow?
Regards,
Sahil
I found it, used Assign field values & set this formating
%(RetrieveFieldValues_lower#@ToUpper@#)
Thanks,
S
You can try the To Title Case function instead of To Upper. Note that there isn't much intelligence here. It will just make the first letter of every word upper case.
You're right that its behavior is simple. But do notice that To Title Case does some additional things:
1) Words like abcDEFghiJKLmno become Abcdefghijklmno. That is, it "flattens" the middle and end of the word.
2) Words that are all-caps are left as they are (ie ABC, DEF, FBI, etc). It basically assumes they are acronyms (or that you are typing loudly intentionally, I suppose).
Note that To Title Case will sometimes get a bit overzealous and do silly things, like turn O'Donnel into O'donnel. This is still considered "correct" title case, but be aware of it =)
But, I have one more issue, above converts the complete input to Upper case, however if I want only the first Letter to be upper case & then the first after space?
Example:
Before: welcome to disney
After: Welcome To Disney
I guess it will be pattern matching & then Formatting, however I can't figure out.
Can someone help Please?
Regards,
Sahil
Awesome, Thanks!!!
I missed it....