The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Happy lockdowning Forum,
I have a matrix with info:
1. A list of 25 deliverables with random plan dates and random dates they were submitted
2. I created (head) columns by "starting-date" week. All random dates are grouped in those weeks
3. To measure the missed items i created measure
Solved! Go to Solution.
Sorry, I fooled myself.
failed 2 =
SUMX (
VALUES ( 'Date Calendar'[Week start] ),
IF (
'Date Calendar'[Week start]
< TODAY () - WEEKDAY ( TODAY (), 2 ) + 1,
CALCULATE(SUM ( 'plan date'[plan sum] ) - SUM ( 'submission date'[sub sum] )),
BLANK ()
)
)
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @Mike_Mace ,
try this
failed =
IF(MAX('Date Calendar'[Week start]) < TODAY() - WEEKDAY(TODAY(),2) +1,
SUM('plan date'[plan sum])-Sum('submission date'[sub sum]), BLANK())
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @mwegener
That works well, it stops subtraction before running week thanks.
Although it doesnt give Grand Totals for this measure. Any idea why? (named "failed 2" on snip below)
Hi @Mike_Mace ,
because the total does not filter to the start of the week.
Try this.
failed =
SUMX (
VALUES ( 'Date Calendar'[Week start] ),
IF (
MAX ( 'Date Calendar'[Week start] )
< TODAY () - WEEKDAY ( TODAY (), 2 ) + 1,
SUM ( 'plan date'[plan sum] ) - SUM ( 'submission date'[sub sum] ),
BLANK ()
)
)
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @mwegener
It looks like new "failed 3" has same results as "failed 2". I gave them a different highlight on the snip to read with ease. Still no row/grand totals
Is there a way around this or do i need to rethink model structure?
Sorry, I fooled myself.
failed 2 =
SUMX (
VALUES ( 'Date Calendar'[Week start] ),
IF (
'Date Calendar'[Week start]
< TODAY () - WEEKDAY ( TODAY (), 2 ) + 1,
CALCULATE(SUM ( 'plan date'[plan sum] ) - SUM ( 'submission date'[sub sum] )),
BLANK ()
)
)
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
112 | |
79 | |
74 | |
50 | |
40 |
User | Count |
---|---|
135 | |
120 | |
75 | |
65 | |
64 |