Reporting Services String Concatenation Problem

I am trying to write an expression to concatenate a string, but I get an error when saving a report. What could be the problem? Thanks for any help.

=Fields!address.Value&","&Fields!city.Value&","&Fields!zipcode.Value&","&Fields!state.Value 
+6
source share
1 answer

The .Value value must be separated from the space and with a space, otherwise it will not work.

+10
source

Source: https://habr.com/ru/post/916486/


All Articles