我需要在tablix中实现以下表达式:
1.NewReatil < cost then " NR is below cost"
2.% Change >=20% then " NR is >=20%"
这里% change是一个派生列。
我试过:
=Switch(Fields!NEW_RETAIL.Value < Fields!PC.Value, "New Retail is below cost", ReportItems!Change.Value >= 20%, "New retail is >=20%")
和
=IIF(Fields!NEW_RETAIL.Value < Fields!PC.Value, "New Retail is below cost", IIF(ReportItems!Change.Value >= 20%, "New retail is >=20%")," ")
但两者都不起作用!
需要尽快帮助!!