Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello
I have successfully produced the last value using this calculation:
Which gets used by:
Solved! Go to Solution.
Hi @Anonymous ,
Here I suggest you to try below codes to create [Last Trans] and [Second Last Trans] measures.
Second Last Trans =
VAR _Last_Date =
MAXX (
FILTER (
ALL ( 'Market Prices' ),
'Market Prices'[Symbol] = MAX ( 'Market Prices'[Symbol] )
&& 'Market Prices'[Date] < MAX ( 'Market Prices'[Date] )
),
'Market Prices'[Date]
)
RETURN
CALCULATE (
SUM ( 'Market Prices'[Value] ),
FILTER ( 'Market Prices', 'Market Prices'[Date] = _Last_Date )
)
Last Trans =
VAR _Last_Date =
MAXX (
FILTER (
ALL ( 'Market Prices' ),
'Market Prices'[Symbol] = MAX ( 'Market Prices'[Symbol] )
),
'Market Prices'[Date]
)
RETURN
CALCULATE (
SUM ( 'Market Prices'[Value] ),
FILTER ( 'Market Prices', 'Market Prices'[Date] = _Last_Date )
)
My Sample:
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Cheers, that looks great.
Hi @Anonymous ,
Here I suggest you to try below codes to create [Last Trans] and [Second Last Trans] measures.
Second Last Trans =
VAR _Last_Date =
MAXX (
FILTER (
ALL ( 'Market Prices' ),
'Market Prices'[Symbol] = MAX ( 'Market Prices'[Symbol] )
&& 'Market Prices'[Date] < MAX ( 'Market Prices'[Date] )
),
'Market Prices'[Date]
)
RETURN
CALCULATE (
SUM ( 'Market Prices'[Value] ),
FILTER ( 'Market Prices', 'Market Prices'[Date] = _Last_Date )
)
Last Trans =
VAR _Last_Date =
MAXX (
FILTER (
ALL ( 'Market Prices' ),
'Market Prices'[Symbol] = MAX ( 'Market Prices'[Symbol] )
),
'Market Prices'[Date]
)
RETURN
CALCULATE (
SUM ( 'Market Prices'[Value] ),
FILTER ( 'Market Prices', 'Market Prices'[Date] = _Last_Date )
)
My Sample:
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.