How to convert Text on a SSRS report to Title Case. Right now I am using
=Strconv(Fields!Title.Value, 3)
Which works but in some cases eg.: GEORGIA(GA) is the text coming from DB its converting it to Georgia(Ga). I want it convert like Georgia(GA). I think some kind of Regular expressions need to be used, But I'm not sure how to do that. Is there a way to achieve this from a inbuilt SSRS functions or Writing custom method is the only way?
Any kind of help is much appreciated. Thanks! :)