The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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! | |