Camel case on SSRS Report Expression, D365FO
Views (1779)
Camel case on SSRS Report Expression
Today I found a very good function in SSRS reporting services, which Converts the first letter of every word in string to uppercase.
=StrConv(Fields!Name.Value,3)
But using “strConv” function we can simply achieve.
Here is the syntax:
=StrConv(Fields!Name.Value, vbProperCase)
or
=StrConv(Fields!Name.Value,3)
This was originally posted here.

Like
Report
*This post is locked for comments