SSRS 2008 R2
I am getting an error like
"the value expression for the query parmeter '@TITLE' refers to non existing parameter 'TITLE' . letters in the names of the parameters must use the correct case"
Please help me...
May 27th, 2011 1:25pm
if I remember correctly parameters are case sensitive. Either change '@TITLE' in your query to the exact case name of your parameter (its probably going to be '@Title' or '@title') or change the name of your parameter in the parameter list to 'TITLE'.
Free Windows Admin Tool Kit Click here and download it now
May 27th, 2011 1:34pm
It sounds like you have a DataSet that is expecting a parameter of @TITLE.
Have you created a Parameter in this report with the same data type as in the query and name = "TITLE"?
May 27th, 2011 1:39pm