如何在Report Builder的同一表达式区域创建两个不同的if子句?
第一个:
=IIf( Fields!productidname.Value="" , Fields!productdescription.Value, Fields!productidname.Value);
第二个:
=Iff(Fields!tler.Value="", " ","-- (" & Fields!tler.Value & " ) ")
它不起作用。
答案 0 :(得分:0)
我认为这可能就是你要找的东西;
=
IIf(Fields!productidname.Value="" , Fields!productdescription.Value, Fields!productidname.Value)
&
Iff(Fields!tler.Value="", " ","-- (" & Fields!tler.Value & " ) ")