What\'s the syntax for inserting a WHERE clause in an SSRS expression? I am using BIDS 2008.
WHERE
SSRS expression
BIDS 2008
=Sum(Fields!QuantityToShi
Use the IIF method:
=Sum(IIF(Fields!Program.Value = "FC", Fields!QuantityToShip.Value, 0))