本文介绍了如何连接在RDLC前pression值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有,我想打一个前pression一个RDLC文件。
这里是前pression的性能形象。我需要连接姓,名和中东初始化。
请尽快提出一些解决!
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.Please suggest some solution ASAP !!
推荐答案
下面的例子对我的作品:
The following examples works for me:
=Fields!FirstName.Value & " " & Fields!LastName.Value
或
="$ " & Sum(Round((Fields!QTD_ORDER.Value - Fields!QTD_RETURN.Value) * Fields!PRICE.Value,2), "Entity_orderItens")
看一看
这篇关于如何连接在RDLC前pression值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!