Reputation: 17
I was wondering if I could perform this algebraic use, Here is the ones I am trying to perform with.
JCCM.BilledAmt + JCCM.udGEACrev As REVENUE_2,
(JCCM.udGEACrev + JCCM.BilledAmt) - JCCP.ActualCost As BilledCostDifference,
I tried adding REVENUE_2 between the brackets but the Report Builder does not take it as a column
Upvotes: 1
Views: 66
Reputation: 479
Yes.
Add Calculated Field
Field name
: REVENUE_2
Field source
: Fields!JCCM.BilledAmt.Value + Fields!JCCM.udGEACrev.Value
Field name
: BilledCostDifference
Field source
: Fields!REVENUE_2.Value - Fields!JCCP.ActualCost.Value
NOTE:
SSRS will not recognize the first calculated field you added unless you hit OK. So add the first calculated field, hit OK, add the second calculated field.
Upvotes: 1