I have a data grid using Matrix that contains 3 columns (PADate, LineOfBusiness and Total). PA date is the row group and the Line of Business is the column group and I'm adding the total records in the line of Business. The line of business has multiple values (MA, PA and LC).
The goal is to exclude the total of line of business "LC" in the total, but I'm getting errors. I tried
=IIF(Fields!LineofBusiness.value <> "LC", SUM(Fields!Total.Value, Nothing)
but I get an error.
In the screen shot below, If there's a value in L-CTRx column it should subtract that value in Totals. Instead of 21990 it should be 21998.