SmartConnect Upper-lower case function
Is there an built-in function to format format text to upper lower case (Like This). I see functions fn.LOWER and fn.UPPER, but they format the text either all lowercase or all uppercase. Thanks!
Answers
Looks like yes
What you are looking for is “proper” or “title” case.
there is a function called fn.PROPER which would appear to be what you want.
otherwise if there wouldn’t have been (or doesn’t work), then since we write standard vb.net/C# here, we should be able to find that info on the internet as well.
This also worked for me:
http://stackoverflow.com/questions/17899004/propercase-in-vb-net
What you are looking for is “proper” or “title” case.
there is a function called fn.PROPER which would appear to be what you want.
otherwise if there wouldn’t have been (or doesn’t work), then since we write standard vb.net/C# here, we should be able to find that info on the internet as well.
This also worked for me:
http://stackoverflow.com/questions/17899004/propercase-in-vb-net
Got it. Thanks!