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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Solved! Go to Solution.
Hi @AwaisAnwar ,
Please try the following methods and check if they can solve your problem:
1.Create the simple table.
2.Create the new measure to filter.
Last Record =
VAR Record_Customer = CALCULATE(
MAX('Table'[Date]),
ALLEXCEPT('Table', 'Table'[customer])
)
RETURN
IF(MAX('Table'[Date]) = Record_Customer, 1, 0)
3.Drag the measure into the Filters pane and set the show items is 1.
4.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @AwaisAnwar ,
Please try the following methods and check if they can solve your problem:
1.Create the simple table.
2.Create the new measure to filter.
Last Record =
VAR Record_Customer = CALCULATE(
MAX('Table'[Date]),
ALLEXCEPT('Table', 'Table'[customer])
)
RETURN
IF(MAX('Table'[Date]) = Record_Customer, 1, 0)
3.Drag the measure into the Filters pane and set the show items is 1.
4.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can create a DAX table to achieve what you are looking for. Here is a link to SUMMARIZE DAX function: SUMMARIZE function (DAX) - DAX | Microsoft Learn
Proud to be a Super User! | |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |