Forum Replies Created

Viewing 2 posts - 61 through 62 (of 62 total)

  • RE: Report Parameter Formatting

    Snigdha Vartak (9/4/2013)


    Parameter formatting is not supported in SSRS. You can not control the parameter field size, positions.

    It's not possible to change the parameter control with BIDS in SSRS. However,you...

  • RE: parameter in dataset

    Snigdha Vartak (8/17/2013)


    You may use dynamic SQL statements. something like,

    --@schema is parameter

    Declare @val1 nvarchar(500)

    SET @val1 ='Select * from ' + @schema+'.'+'TableName'

    execute(@val1)

    In similar case, Dynamic SQL worked for me.

Viewing 2 posts - 61 through 62 (of 62 total)