Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |