Titlecase formulas
Hello
i have a problem with "Titlecase" formulas
i used this formulas like this
[TitleCase([BarcodeTable.VariantItemExplanation1])]
But result is Upper case again
How can i used this formulas
Hello
i have a problem with "Titlecase" formulas
i used this formulas like this
[TitleCase([BarcodeTable.VariantItemExplanation1])]
But result is Upper case again
How can i used this formulas
Comments
TitleCase does not reduce letters, so as not to ruin the text (for example, abbreviations).
You can wrap your text first in LoverCase and then use TitleCase. For example:
[TitleCase(LowerCase([BarcodeTable.VariantItemExplanation1]))]
Hello
Thank you :-)
Hello, how can I put only the first letter of a sentence in uppercase?