开发者

Reporting Services Text Case

开发者 https://www.devze.com 2023-02-03 19:30 出处:网络
Is there a way in Reporting Services of managing the case of text when rendering a report. 开发者_如何学运维

Is there a way in Reporting Services of managing the case of text when rendering a report.

开发者_如何学运维

The data in the database has a

RANDOM mixtures of CAPS

and on the reports they would like to see

Random mixtures of caps


An expression like this should do the trick:

=UCase(left(Fields!Name.Value, 1)) + strconv(Mid(Fields!Name.Value, 2), vbLowerCase)


You might be able to use an expression for this, I just don't know if there's an out of the box function available to perform changes to the case. You can get a list of all string functions in the expression window.

If there is no such function, you can still use embedded code to do the trick.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号