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: 
chinnuchinni
Creator III
Creator III

how display top two projects

Hi all,

I have Four fields,say

   

YearProjectEmployeeHours
2016ABCRaj10
2016XYZRan30
2016PQRPawl20
2016MNRSonu40
2016LOSRonu25
2016KBWBanu60
2016RLZJoly75
2016SLPSinu80
2016CQRHony95
2016NBRWoly15
2016DSWBowl35
2017RSOGail75
2017LOSRaj95
2017KBWRan28
2017RLZPawl55
2017SLPSonu65
2017CQRRonu98
2017NBRBanu42
2017DSWJoly38
2017XYZSinu73
2017PQRHony68
2018MNRWoly99
2018LOSBowl24
2018KBWGail28
2018RLZRaj20
2018XYZRan10
2018PQRPawl62
2018MNRSonu19
2018LOSRonu29
2018KBWBanu43
2018RLZJoly35
2018CQRSinu26
2018NBRHony38
2018DSWWoly12

Required o/p:

 

YearProjectEmployeeHours
2016CQRHony95
2016SLPSinu80
2017CQRRonu98
2017LOSRaj95
2018MNRWoly99
2018PQRPawl62

thanks in advance.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try:

Aggr(If(Rank(Max(Hours))<3,Max(Hours)), Year, Project)

Capture.JPG

View solution in original post

5 Replies
tresesco
MVP
MVP

Try:

Aggr(If(Rank(Max(Hours))<3,Max(Hours)), Year, Project)

Capture.JPG

jyothish8807
Master II
Master II

Hi Praveen,

Try like this:

if(Aggr(rank(sum(Hours)),Year,Project)<= 2,Aggr(sum(Hours),Year,Project))

For year 2018 i am getting different out put check the sample.

Br,

KC

Best Regards,
KC
jyothish8807
Master II
Master II

I missed the max part

Best Regards,
KC
chinnuchinni
Creator III
Creator III
Author

Hi,

instead of sum ,if we use max it will give proper output

Thanks You

chinnuchinni
Creator III
Creator III
Author

Thank you Tresesco