AgingRapidly
New member
- Joined
- Mar 11, 2022
- Messages
- 16
- Reaction score
- 0
- Points
- 1
- Location
- Tennessee
- Excel Version(s)
- Excel365
The Grand Total columns in my pivot tables are not the sum of the columns when I've used ROUNDUP in measure.
Grand Total value is always less than it should be. No filters are applied.
I have to take the
I'd appreciate any help I can get with this.
Thank you
Grand Total value is always less than it should be. No filters are applied.
I have to take the
each quantity forecasted,
FCst_Qty Measure - Grand Totals correct
=SUMX(
FG_Forecasts,
FG_Forecasts[FCst_Quantity])
use that result to calculate ounces forecasted
ForecastOz Measure - Grand Totals correct
=[FCst_Qty]*[Fill]
use that result to calculate pounds forecasted which needs to be rounded up so that we would make more rather than less.
ForecastLbs Measure - Grand Totals incorrect and all other measures using ROUNDUP are wrong too
=ROUNDUP(
DIVIDE(
[ForecastOz],
[OzPerLb],
0),
0)
I'd appreciate any help I can get with this.
Thank you