Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count based off Aggregate First Sorted Value

I am attempting to use an aggregate function combined with the firstsortedvalue function in order to identify the last Person associated to an ID. This formula successfully tells me the latest name associated to the ID according to date:

=aggr(FirstSortedValue(Name, -Date),ID)

I now want to know the count of the number of times that name has been associated to the ID. I can't figure out what formula to use for this Count column. I tried plugging this value into a set analysis and it only works when you filter for one value for ID, otherwise it's 0.

=count({<Name={$(=FirstSortedValue(Name, -Date))}>}Date)

Original Data:

IDDateName
17/12/2015Sarah
17/13/2015John
17/14/2015John
27/13/2015Sarah
37/12/2015Jim
37/14/2015Sarah

Intended Result:

IDName "=aggr(FirstSortedValue(Name, -Date),ID)"Count

1

John

2
2Sarah1
3Sarah1
1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe like

=count(aggr(If(Name= FirstSortedValue(TOTAL<ID> Name, -Date), Name),ID,Name,Date))

View solution in original post

1 Reply
swuehl
MVP
MVP

Maybe like

=count(aggr(If(Name= FirstSortedValue(TOTAL<ID> Name, -Date), Name),ID,Name,Date))