Display Quoted Text in SQL Report

  • I want to display Quoted text in one of textbox. How do I complish that

    like

    transactionId TransactionName

    12 "Some Transaction"

    13 "Other Tranaction"

    I Want Quotes to appear on dispaly or in export file of SQL report

    Quotes are not existing in the Data; I want to add it.

    Thank you

  • Hi,

    Please try this expression -

    =Fields!PName.Value.ToString().Format("''"+Fields!PName.Value+"''")

    Let me know, if it helps.

    Thanks,

    Niraj

  • Actually in SQL I think it's:

    '''' + Format(FieldName, '####') + '''' to output a leading zero suppressed four digit number surrounded by apostrophes.

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

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