Forum Discussion

alj785's avatar
alj785
Frequent Visitor
8 years ago
Solved

Show Most Recent Date

Hello, I have two data sets one with a list of supervisors and another one showing the last time they had an employee injury. Some supervisors have reported multiple injuries and I need to show when...
  • deldersveld's avatar
    8 years ago

    Use the DAX LASTDATE function in a measure:

    =LASTDATE(InjuryData[IncidentDate])