Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
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.
User | Count |
---|---|
91 | |
74 | |
71 | |
58 | |
55 |
User | Count |
---|---|
41 | |
39 | |
34 | |
32 | |
30 |