reporting services - #Error in SSRS expression -


in report, have include courses info(in report) in parameter(selected value)

i using expression in checkbox:

="course: " & parameters!course.label  

but throws #error when run report. idea going wrong.

thanks, ar

try this:

="course: " & join(parameters!year.label, ",") 

if parameter multivalue necessary join labels returns, if select multiple values join() function return comma separated values.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -