Changing the detail header in invoice report

I’m an SSRS noob but have accomplished a few things in the past. I thought this would be simple but it may not be. A customer is not going to accept invoices which do not say USD on them. I’m trying to add (USD) to the column header but I can’t for the life of me find where that text is located in SSRS report builder (2012).

image

How can I change those to say Unit Price (USD) and Ext Price (USD)?

LBL_UnitPrice is a field in the datatset. The value of the field is Unit Price.

Right click the field and select “Expression…” Then type in static string, like:

="Unit Price US$"

Way too easy, thank you!