Forum Discussion
AlanP514
Post Patron
4 years agoFinding Max Record
Hi all, I need your help to solve this challenge Scenario is I have one table containing data like this, IT team triggers data many times a day, so I want to find the max date values from ...
v-yanjiang-msft
Community Support
4 years agoHi AlanP514 ,
According to your description, here's my solution.
Create a measure:
Check =
IF (
MAX ( 'Table'[Load Date] )
= MAXX (
FILTER ( ALL ( 'Table' ), 'Table'[Layer] = MAX ( 'Table'[Layer] ) ),
'Table'[Load Date]
),
1,
0
)
Put the measure in the visual filter and select its value to1.
After apply filter, get the expected result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.