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.
Hi,
I need help on how can I get the value from "Type" column based from max Purchased Date per Product Number and ProductLineNum. For example, for Product Number 5100, the max Purchased Date is 10/25/2019 so it should return the value of "Major equipment".
Expected output:
I'm trying VAR and RETURN formula but I could not get it right.
Thank you in advance
Solved! Go to Solution.
Hello there @summer18 ! Try this:
Latest Type =
CALCULATE (
MAX ( Table[Type] ),
FILTER (
'Table',
'Table'[Purchased Date]
= CALCULATE (
MAX ( 'Table'[Purchased Date] ),
FILTER ( Table, 'Table'[Product Number] = EARLIER ( 'Table'[Product Number] ) )
)
&& [Product Number] = EARLIER ( [Product Number] )
)
)
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
Hello there @summer18 ! Try this:
Latest Type =
CALCULATE (
MAX ( Table[Type] ),
FILTER (
'Table',
'Table'[Purchased Date]
= CALCULATE (
MAX ( 'Table'[Purchased Date] ),
FILTER ( Table, 'Table'[Product Number] = EARLIER ( 'Table'[Product Number] ) )
)
&& [Product Number] = EARLIER ( [Product Number] )
)
)
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes