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

View all the Fabric Data Days sessions on demand. View schedule

Reply
Anonymous
Not applicable

DAX Weekly Total Sales by Store giving wrong totals

Hi,

 

I have sales data by weekly for each store.

And when I am calculatinng the sales % contributionn of each item at store level by weekly..

MohanV128256_0-1693391760379.png

The measure which i have written is giving right value for each item wise whe calcualte the contribution in % as 

MohanV128256_1-1693391837477.png

But my total sales values at each store and weekly is giving wrong total  here and hence the % values also coming wrong at total.

 

DAX:

_TotalSales = 

CALCULATE(SUM(FFD_ADOPTION_RESULT[SALES_AMT]),
FILTER(ALLSELECTED(FFD_ADOPTION_RESULT),FFD_ADOPTION_RESULT[Store_Name] = MAX(FFD_ADOPTION_RESULT[Store_Name]) && FFD_ADOPTION_RESULT[Week] = MAX(FFD_ADOPTION_RESULT[Week])))

%Sales = DIVIDE(SUM(SAL_AMT),_TotalSales,0)

 

Can anyone please correct my dax here to get the right total values.

 

Thanks,

Mohan V.

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , for such case prefer a date table with Year Week column and week rank 

 

Have these new columns in Date Table, Week Rank is Important in Date/Week Table

Week Rank = RANKX('Date','Date'[Week Start date],,ASC,Dense)
OR
Week Rank = RANKX('Date','Date'[Year Week],,ASC,Dense) //YYYYWW format


These measures can help
This Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))
Last Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])-1))

 

 

Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-Last-Week/ba-p/1051123
https://www.youtube.com/watch?v=pnAesWxYgJ8

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors