Forum Discussion
Card showing wrong values
- 7 years ago
Hi rosscortb
Is this problem sloved?
If it is sloved, could you kindly accept it as a solution to close this case?
If not, please let me know.
Best Regards
Maggie
Hi rosscortb
Selecting "Last" works for me.
Could you show me your scenario with some screenshots or example data?
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Using the "Last" aggregation will not always work as it does a CALCULATE(MAX( 'DB Headcount'[Position] )) so it will just the the alphabetically "last" position, not the last ordered by date.
To do that you would need to do something like the following assuming that you have EmployeeID and LastUpdatedDate columns (or something similar)
Current Position =
// get current employee VAR _employeeId = SELECTEDVALUE ( 'DB Headcount'[EmployeeID] )
// get the max updated date for that employee VAR _maxdate = CALCULATE ( MAX ( 'DB Headcount'[LastUpdatedDate] ), 'DB Headcount'[EmployeeID] = _employeeId )
// lookup the position for the employeeid and max date RETURN IF ( NOT ( ISBLANK ( _maxDate ) ), LOOKUPVALUE ( 'DB Headcount'[Position], 'DB Headcount'[EmployeeID], _employeeID, 'DB HeadCount'[LastUpdatedDate], _maxDate ) )