Attention to detail is a key in creating SSRS reports/dashboards that look like a work of a professional; To that end, here’s a tip: How to capitalize the first letter in your string? In other words, how to Camel Case the Text?
Here’s the function that you can use in your SSRS Expressions:
[code language=”SQL”]
StrConv("hello world",3)
[/code]
OR
[code language=”SQL”]
StrConv("hello world",vbProperCase)
[/code]
Input | Function | Output |
hello world | StrConv(“hello world”,3) | Hello World |
I hope that helps!