Can anyone please help me to fix the expression below?

If anyone between age of 2-15 should written next to it 51,84$

    =IIf((Fields!Age.Value>=2,"51,84 $",Fields!Age.Value<15,"51,84 $")
有帮助吗?

解决方案

You need to use the AND operator between the two expressions.

=IIF(Fields!Age.Value >=2 AND Fields!Age.Value <15, "51,84 $", "Other Value")
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top