I am getting an error when attempting to display report parameters in a textbox. I have constructed an expression like:
="My Report for " & Parameters!ReportMonth.Value & " " & Parameters!ReportYear.Value
ReportMonth and ReportYear are string values
The error I am getting is: "The Value expression for the textrun ‘Title.Paragraphs[0].TextRuns[0]’ contains an error: [BC30654] 'Return' statement in a Function, Get, or Operator must return a value."
Note: "Title" is the name of the textbox object
I am using SSRS 2008.
Any thoughts?