I have a SSRS report that contains a stacked bar chart with three values (in percentage) on each column. It now just needs to show two values by summing two of the others and leaving one alone. I need to combine two of the categories into one basically.
The way I thought I'd be able to do this is by using the following expression:
=sum(iif(Fields!Status.Value = "A" OR Fields!Status.Value = "B",
Fields!Percents.Value, "1", sum(iif(Fields!Status.Value = "C",
Fields!Percents.Value, "2" ))))
But I am getting an error. Any help or suggestions would be appreciated.