I am preparing a report using Microsoft report builder. My BAQ data appears as below
JobNum
ProdQty
PartNum
Description
RequiredQty
Backflush
J1
2
P1
Part1
10
FALSE
J1
2
P2
Part2
20
FALSE
J1
2
P3
Part3
30
FALSE
J1
2
P4
Part4
40
TRUE
J2
3
P1
Part1
10
FALSE
J2
3
P2
Part2
20
FALSE
J2
3
P3
Part3
30
FALSE
J2
3
P4
Part4
40
TRUE
J2
3
P3
Part3
30
FALSE
J2
3
P4
Part4
40
TRUE
I want my report to appear as below
Job Num
ProddQty
J1
2
J2
3
Total
5
PartNum
Description
Requiredqty
P1
Part1
20
P2
Part2
40
P3
Part3
90
The problem I am facing is that the total production qty is coming as 26. Rest everything in the report is coming as I require. Could any body suggest how to get the correct total.
Hi Smith;
Thanks for the suggestion. I did as below for the first table.
I grouped the table on the basis of jobnum using the row group properties. Then I inserted a row outside group-below as I don’t need the value after every jobnumber. Then in the new row I gave the expression as below
=Sum(Max(Fields!JobHead_ProdQty.Value))
My result is 1 ET_JOBMTL.rdl (47.1 KB)