Any advice appreciated please.
In many of our reports, some text comes through in upper case, eg a name as:
JOHN SMITH
Or in lower case - john smith
Is there any code / an expression we can use to allow regular capitalisation, so the data always appears (in a report) as:
John Smith ?
However this is further complicated by there already being an IIF expression to display the name in the report, eg: =IIF(fields!x.value="", fields!title.value & " " & Fields!Forenames.Value & " " &fields!surname.Value, "no name") - any suggestions on how to combine this expression with one that returns regular capitalisation would be appreciated.