Forum Discussion
Johan
7 years agoAdvocate II
Missing dates in fact table
Hi, I've got these 2 tables: calendar datekey 01-01-2019 02-01-2019 03-01-2019 fact datekey stock 01-01-2019 50 03-01-2019 70 Report needs to be: Stock levels: date...
- 7 years ago
Hi,
Try this MEASURE
Measure = CALCULATE ( SUM ( 'fact'[stock] ), LASTNONBLANK ( FILTER ( ALLSELECTED ( 'Calendar'[Datekey] ), 'Calendar'[datekey] <= SELECTEDVALUE ( 'Calendar'[datekey] ) ), CALCULATE ( SUM ( 'fact'[stock] ) ) ) )
Zubair_Muhammad
7 years agoCommunity Champion
Hi,
Try this MEASURE
Measure =
CALCULATE (
SUM ( 'fact'[stock] ),
LASTNONBLANK (
FILTER (
ALLSELECTED ( 'Calendar'[Datekey] ),
'Calendar'[datekey] <= SELECTEDVALUE ( 'Calendar'[datekey] )
),
CALCULATE ( SUM ( 'fact'[stock] ) )
)
)