-1

I need to subtract 2 values from one to get the resultant in my report. How to get this.

Subtract [Sum(X)] and [Sum(Y)] from AB_Total

Kindly sort this out

Konrad Krakowiak
  • 12,285
  • 11
  • 58
  • 45
Kavr
  • 17
  • 10

1 Answers1

0

Retrieve the data fields into a dataset(dataset1). Put the expression below in to a textbox:

=SUM(Fields!X.value,"dataset1")-SUM(Fields!Y.value,"dataset1")

Black_T
  • 477
  • 1
  • 3
  • 3