I am trying to put an address block on a report so that it will show in the window of an envelope. I've created the following expression to make sure it formats correctly.
=First(Fields!Customer_Name.Value,"DataSet1") & vbCrLf & First(Fields!Address_1.Value,"DataSet1") & vbCrLf & First(Fields!City.Value,"DataSet1") & "," & TRIM(Fields!State.Value,"DataSet1")& " " & TRIM(Fields!Zip.Value,"DataSet1")
It should look like this
But I get this error when I try to run it...
Where am I going wrong?
ipainter