The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I am calculating a cumulative value at a cut-off date, but records that have already expired do not appear on subsequent cut-off dates. I would like to know how I can filter that data that ended in past months.
Below is an image of what I want to calculate
It's like a sum of the last record
Hi @fjcampos,
Please check following steps as below and see if the result achieve your expectation:
1. Create calculated table as silcer:
Table 2 = DISTINCT('Table'[Date])
2. Create measures:
Measure =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER (
ALL ( 'Table' ),
'Table'[Name] = MAX ( 'Table'[Name] )
&& 'Table'[Date] <= SELECTEDVALUE ( 'Table 2'[Date] )
)
)
Measure 2 =
CALCULATE (
SUM ( 'Table'[Sales] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] = [Measure] )
)
3. Result would be shown as below:
BTW, Pbix as attached, hopefully works for you.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you for your answer, but try to replicate your measure but it doesn't work.
I attach an example file of how is my model Pbix