Link to home
Start Free TrialLog in
Avatar of BostonMA
BostonMAFlag for United States of America

asked on

How to underline in SSRS using format code

I have the following expression which does not work:

=Format("Customer Name", "Underline")

Customer Name is not a field name, it is just text.  I want to underline it, however this expression returns the word Underline.
ASKER CERTIFIED SOLUTION
Avatar of Auric1983
Auric1983
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BostonMA

ASKER

I need to be able to create the following display in the report:

Customer Name: Mike Smith

where 'Customer Name' is underlined.

I tried to do it as follows

="Customer Name: " + Fields!CustomerName.Value

which produced everything I need except Customer Name was not underlined.  Do you know how to do that?

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you.