Forum Discussion
Hinnax
5 years agoFrequent Visitor
Time Intelligence over 2 Months
Hello everyone, I’m pretty new to Power Bi so I‘m afraid my question is too trivial for this forum. Before I describe the problem, let me start with my setup: I use a date table with dates ove...
parry2k
Super User
5 years agoHinnax and here is the measure:
Measure_Dec+Jan =
CALCULATE(
[Measure_1],
FILTER (
ALL ( 'Date'[Date] ),
'Date'[Date] <= MAX ( 'Date'[Date] ) )
)
- Hinnax5 years agoFrequent Visitor
That's exactly what I was looking for. Thank you very much!
It seems it's the same Measure you posted 2 hours ago 😅😅 I don't know what I did wrong when I tested it.
Would it be too much to ask for, to kindly explain the mechanic behind your mesure? I really want to understand it.