I have a matrix report. i am calculating by using this expression,
=switch(Fields!Type.Value = "ATHLETE",Sum(Fields!JnlAmt.Value)
,Fields!Type.Value = "Type",0.8*Sum(Fields!JnlAmt.Value)
,Fields!Type.Value = "VENUE", Sum(Fields!JnlAmt.Value))
Now i would like to find the difference of Athlete and Type
=Sum(Fields!JnlAmt.Value) [from Athlete] - 0.8*Sum(Fields!JnlAmt.Value) [from Type]
I need help to write an expression for this. If you need more information, let me know. Please any help, any taught is welocme.