Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
This is my first time posting, so bear with me.
I have a dataset like below:
I have the following two measures that calculate running totals. These running totals change based on the current filter context (Category) slicer.
Actual running total (Measure) =
CALCULATE(
SUM('Table1'[Actual]),
FILTER(
ALLSELECTED('Table1'[Date]),
ISONORAFTER('Table1'[Date], MAX('Table1'[Date]), DESC)
)
)
Baseline running total (Measure) =
CALCULATE(
SUM([Baseline]),
FILTER(
ALLSELECTED('Table1'[Date]),
ISONORAFTER('Table1'[Date], MAX('Table1'[Date]), DESC)
)
)
I need to create a measure that identifies "Days Delay" for each row.
For each row I need to take the "Actual running total (Measure)", find the Max "Baseline running total (measure)" that is less than the "Actual running total (Measure)" and then compare the differences in dates.
Let's take row "05 January 2019" as an example.
The big challenge is that the solution needs to be dynamic i.e. if I change the "Category" slicer, the measures need to recalculate and produce the relevant results based on the context of the slicer / filter.
Any direction or help would be greatly appreciated.
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
8 | |
7 |