Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 43 | |
| 41 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 186 | |
| 116 | |
| 95 | |
| 64 | |
| 45 |