Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Incorrect values in pivot table from Tabular model

Hi

I tried for several days to fix this but to no avail so appreciate all/any help!

I have a model built in SSAS Tabular.

When checking my metric in Excel pivot table, it gives the wrong value in the subtotal, but only for a certain condition.

 

Here's the logic for "Rtn_qty_adjust":

If Rtn_qty > UCL, THEN Rtn_qty_avg ELSE Rtn_qty

 

Note "UCL" = Upper Control Limit

 

As you can see from the image, the subtotals are correct anywhere that Rtn_qty < UCL,  but where Rtn_qty > UCL, then they are wrong.

 

Here is the DAX I have for "Rtn_qty_adjust":

 

:=
IF(COUNTROWS(VALUES(dates[incr_base_date])) =1, [Rtn_qty_adj_1]
,
SUMX
(
SUMMARIZE(drct_excg, dates[incr_base_date], "rtns", [Rtn_qty_1sd_adj_prd] ),
[rtns]
)
)

 

this relies on the measure "Rtn_qty_adj_1" per below

:=

Rtn_qty_adj_1:= IF( [Rtn_qty] > [UCL], [rtn_qty_avg], [Rtn_qty] )

 

 

 

thanks!!!!

 

dax.png

2 REPLIES 2
Anonymous
Not applicable

HI @Anonymous,

 

I'd like to suggest you to take a look at following blog about deal with calculation on hierarchy level subtotal:

Clever Hierarchy Handling in DAX

 

Regards,
Xiaoxin Sheng

Anonymous
Not applicable

thanks for that link, I will check it out now

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.