How to concatenate values in RDLC expression?
问题 I have an RDLC file in which I want to make an expression. Here is the image of properties of expression. I need to concatenate First Name, Last name and Middle Init. 回答1: The following examples works for me: =Fields!FirstName.Value & " " & Fields!LastName.Value or ="$ " & Sum(Round((Fields!QTD_ORDER.Value - Fields!QTD_RETURN.Value) * Fields!PRICE.Value,2), "Entity_orderItens") Have a look at MSDN 回答2: Check this : http://blogs.msdn.com/b/mosharaf/archive/2005/12/20/localreportcustomcode.aspx