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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Challenge with SUM of AVERAGES

Hello PBI Community!

 

So, I have a challenge with DAX. My end-users want to see AVERAGE of products sold for each weekday but the Grand Total should be a SUM of these AVERAGES. I wrote some DAX:

 

So my code looks like that:

    sumOfAverages = 
VAR avgFull =
CALCULATE (
SUM ( [sold_qt] )
/ DISTINCTCOUNT ( [delivery_date] )
)
RETURN
IF (
HASONEVALUE ( [weekday_name] ),
avgFull,
SUMX ( VALUES ( date_weekday_dim[weekday_name] ), avgFull )
)

Actually it's working only if I have selected all the weekdays. See the screen below.pbi_dax.PNG  If I select something on slicers and there won't be any data from particular weekday it looks like that.

Capture.PNG

So the Grand Total is not correct. I think that there's a problem with SUMX (VALUES ... )) section in DAX but really don't know how to figure it out. 

Could you help me with this, please?:)

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , also use isinscope

https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Nathaniel_C
Community Champion
Community Champion

Hi @Anonymous ,
Created a table, then on visuals a slicer, and a matrix, then a measure.

table.PNG

 

table 2.PNG

 

 

Sum of Daily Averages = SUMX(DailyAverages,Divide(DailyAverages[Sold],DailyAverages[DistinctCount]))

This should work if I understand your issue.


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @Anonymous ,

If one of the days has no values...table 3.PNG

Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.