Member since
04-01-2018
1
Post
1
Kudos Received
0
Solutions
11-19-2020
10:13 AM
You can use an expression incited of a query. in the expression , your query should be something like this. =" SELECT A.COL1 , A. COL2 FROM schema.tableName A WHERE A.COL1 = '" & Parameters!parameterName.Value & "' " Notice the Quotation marks besides the parameter ( " , ' ) and equal ( = ) sign at the beginning You should create fields manually( Use query designer without parameters and let SSRS do the Refresh Fields task)
... View more