ssrs format amount with $ (dollar) sign

  • In an SSRS 2008 r2 report, I am trying to display a transaction amount in the report with dollar and cents amounts. I have tried to used the following:

    =Format(Fields!TransactionAmount.Value, "C")

    but I do not see value that look like the following:

    $25.00

    $166.89.

    I just see:

    25.00 or 166.89.

    I do not see the $ in the amount.

    Note: In a summary line I have code like

    =IIF(Fields!PaymentType.Value=

    "Ch", sum(cdec(Fields!TransactionAmount.Value)),0)

    Thus can you tell me what I can do so the dollar and cents amounts are displayed in the report?

  • Change the format of the textbox from c2 (currency, two decimal places) to n2 (number, two decimal places)

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply