Мне нужно реализовать следующее выражение в tablix :
1. NewReatil < cost then " NR is below cost"
2. % Change >=20% then " NR is >=20%"
Здесь % изменение является производным столбцом.
Я пытался:
=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%")," ")
Но оба не работают!
Нужна помощь как можно скорее !!