Вопрос

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