Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
So I have the following type of data:
Location | Date | Case Count | Earliest Date |
A | 1/1/2020 | 0 | |
A | 1/2/2020 | 3 | 1/2/2020 |
A | 1/3/2020 | 10 | 1/3/2020 |
B | 1/1/2020 | 0 | |
B | 1/2/2020 | 0 | |
B | 1/3/2020 | 1 | 1/3/2020 |
B | 1/4/2020 | 8 | 1/4/2020 |
I want to show the earliest date and not have it change: This is the code I used to calculate the earliest date:
Location | Date | Case Count | Earliest Date | Change in Count |
A | 1/1/2020 | 0 | -- | |
A | 1/2/2020 | 3 | 1/2/2020 | 3 |
A | 1/3/2020 | 10 | 1/2/2020 | 7 |
B | 1/1/2020 | 0 | -- | |
B | 1/2/2020 | 0 | -- | |
B | 1/3/2020 | 1 | 1/3/2020 | 1 |
B | 1/4/2020 | 8 | 1/3/2020 | 7 |
Solved! Go to Solution.
Hi @william_johnson ,
You may create measures like DAX below.
Earliest Date = CALCULATE( MIN('Table'[Date]), FILTER(ALLEXCEPT('Table', 'Table'[Location]), 'Table'[Case Count] > 0 &&'Table'[Date] <= MAX('Table'[Date])))
Change in Count = Var d= CALCULATE(SUM('Table'[Case Count]),FILTER(ALLEXCEPT('Table','Table'[Location]),'Table'[Date]=[Earliest Date]))
return
IF(MAX('Table'[Case Count])<>0, IF(MAX('Table'[Date])=[Earliest Date],d , SUM('Table'[Case Count])-d))
Result:
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @william_johnson ,
You may create measures like DAX below.
Earliest Date = CALCULATE( MIN('Table'[Date]), FILTER(ALLEXCEPT('Table', 'Table'[Location]), 'Table'[Case Count] > 0 &&'Table'[Date] <= MAX('Table'[Date])))
Change in Count = Var d= CALCULATE(SUM('Table'[Case Count]),FILTER(ALLEXCEPT('Table','Table'[Location]),'Table'[Date]=[Earliest Date]))
return
IF(MAX('Table'[Case Count])<>0, IF(MAX('Table'[Date])=[Earliest Date],d , SUM('Table'[Case Count])-d))
Result:
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @william_johnson ,
Please share the expected output. It will help provide a fastr resolution.
Regards,
Harsh Nathani
Thanks, changed! First time post, I'm a newbie!
Hi @william_johnson ,
Thanks a lot. Here you go.
Create Calculated Columns
The demoted case only returns an answer of 1 rather than the actual number of cases on day 2 minus the number of cases on day 1 by location, and so-on.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
68 | |
67 | |
41 | |
39 |
User | Count |
---|---|
48 | |
43 | |
29 | |
28 | |
27 |