
Contributor III
2019-02-19
08:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
i want to display 1st two highest salarys
my table:
emp_ID | emp_Name | emp_Sal |
1 | AA | 200 |
2 | BB | 400 |
3 | CC | 500 |
4 | DD | 600 |
5 | EE | 700 |
6 | FF | 200 |
Experted OUTPUT:
EMP_ID | EMP_Name | Emp_Sal |
4 | DD | 600 |
5 | EE | 700 |
980 Views
5 Replies

Community Manager
2019-02-19
08:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, I would like to get this into the correct product forum as this is for general discussions. Are you referring to QlikView or Sense? Thanks
Did you find a solution to your question? Mark the solution as accepted : and if you found it useful, press the like button!
978 Views

Contributor III
2019-02-19
09:01 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Qlikview
977 Views

MVP
2019-02-19
09:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is this needed to be done in the script or a front end chart?
973 Views

Contributor III
2019-02-25
02:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Hareesh,
Are you expecting the answer like as attached.
Please find the attached document.
Thanks and Regards,
Gayathri
931 Views


Specialist II
2019-02-28
11:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try below expression,
If(Rank(sum(Emp_Sal)) >= 2, sum(Emp_Sal))
Hope this will work for you.
Regards,
Vishal Waghole
If(Rank(sum(Emp_Sal)) >= 2, sum(Emp_Sal))
Hope this will work for you.
Regards,
Vishal Waghole
