Forum Discussion
alj785
8 years agoFrequent Visitor
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...
- 8 years ago
Use the DAX LASTDATE function in a measure:
=LASTDATE(InjuryData[IncidentDate])
deldersveld
8 years agoResident Rockstar
Use the DAX LASTDATE function in a measure:
=LASTDATE(InjuryData[IncidentDate])
alj785
8 years agoFrequent Visitor
Thank you! I was trying to add a coumn but the measure worked perfectly!