March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I'm trying to create subtotal to week level in dax query using defined measure, but it always just shows 1. Here is an example of code, which might explain what I'm trying to achieve:
DEFINE
MEASURE 'Sales'[factor] =
CALCULATE (
IF (
[Total Sales] > 0,
1,
0
)
)
EVALUATE
SUMMARIZE (
CROSSJOIN (
FILTER ( 'Date', 'Date'[WeekDayNumber] <> 7 && 'Date'[Date] < TODAY () && 'Date'[ISOWeek] = 40 ),
'Store'
),
'Store'[Store Code],
'Date'[Year],
'Date'[MonthNo.],
'Date'[ISOWeek],
'Date'[Date],
"Sales", [Total Sales],
"factor", [factor],
"weeklyFactory", CALCULATE('Sales'[Factor], ALLSELECTED('Date'[ISOWeek])
)
Thanks for help,
Krystian
@pbiKrystian , for subtotal you can create a week column in you date table and use allexpect
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-La...
https://community.powerbi.com/t5/Desktop/Percentage-of-subtotal/td-p/95390
https://www.sqlbi.com/articles/using-allexcept-versus-all-and-values/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |