Forum Discussion
alamhaz
5 years agoHelper I
Calculating consecutive dates
Hi there, I don't even know how to start with this measure. I have a simple dataset, (Fact, Stores, Products, Calendar). I have created a report page those shows products by Store that have Zero SOH ...
- 5 years ago
You may create a measure as follows:
InventoryRupturePeriod = VAR LastDateofInventoryAvailability = CALCULATE ( MAX ( Stores[Date] ), FILTER ( ALLEXCEPT ( Stores, Stores[Store], Stores[Product] ), Stores[SOH] > 0 ) ) VAR StartingDate = CALCULATE ( MIN ( Stores[Date] ), FILTER ( ALLEXCEPT ( Stores, Stores[Store], Stores[Product] ), Stores[SOH] = 0 && Stores[Date] > LastDateofInventoryAvailability ) ) VAR EndDate = CALCULATE ( MAX ( Stores[Date] ), FILTER ( ALLEXCEPT ( Stores, Stores[Store], Stores[Product] ), Stores[SOH] = 0 && Stores[Date] > LastDateofInventoryAvailability ) ) RETURN COMBINEVALUES ( " | ", FORMAT ( StartingDate, "DD-MMM-YY" ), FORMAT ( EndDate, "DD-MMM-YY" ) )Please check this sample file
Anonymous
5 years agoNot applicable
There is a Search Box on each of the pages that will look through all the contents...
Here's one of the many solutions that the Box has found for me within seconds:
Solved: Consecutive Days an event has occured - Microsoft Power BI Community