Question

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 $")
Was it helpful?

Solution

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")
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top