Reporting Services string concatenation issue
reporting-services, sql-server-2008
Solution
The .Value must be separated from the & with whitespace, otherwise it will not work.
Problem
I am trying to write an expression to concatenate a string but I get an error message when I save the report. What could be the problem? Thanks for any help. ``` =Fields!address.Value&","&Fields!city.Value&","&Fields!zipcode.Value&","&Fields!state.Value ```