Can someone explain why this wouldn't work:=(SUM(IIf(Fields!currency.Value = "USD ",Fields!price.Value / 1.6, IIf(Fields!currency.Value = "UKST",Fields!price.Value / 1, IIf(Fields!currency.Value = "EURO",Fields!price.Value / 1.18,"")))))
If I put it in a table where the dataset is specified then the SUM part of the statement isn't applied and I get a list of values. If I use the expression in a textbox and specify the dataset in the expression then I get an error.Done numerous searches and from what I can find this *should* work.