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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.