Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I get wrong subtotals in pivot table in row " totaalbedrag inc. korting"
Can someone help me out?
Enclosed file.
Thanks
Anita
Anita,
It seems like your expression is a little bit wrong.
Currently you have this:
sum(Factuurregel_regelbedr) -
(sum(Factuurregel_regelbedr)/100)*(sum([Factuurregel_perc-krt]))
However, if you change to this I think your totals should match:
sum(Factuurregel_regelbedr) -
(sum(Factuurregel_regelbedr*[Factuurregel_perc-krt])/100)
Anita,
It seems like your expression is a little bit wrong.
Currently you have this:
sum(Factuurregel_regelbedr) -
(sum(Factuurregel_regelbedr)/100)*(sum([Factuurregel_perc-krt]))
However, if you change to this I think your totals should match:
sum(Factuurregel_regelbedr) -
(sum(Factuurregel_regelbedr*[Factuurregel_perc-krt])/100)