Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
samuel_brierley
Creator
Creator

return first, second and third rows of a table

hi all,

ive created a resident table that groups values and sorts them top to bottom and i want to be able to use a first that will return the first, second and third area

Area

AreaValue
a4
b3
c2
d1
1 Solution

Accepted Solutions
sunny_talwar

May be this:

In a chart

Only({<Value = {"$(='<=' & Max(Value) - 2 & '>=' & Max(Value))"}>} Value)

In a text box

Concat({<Value = {"$(='<=' & Max(Value) - 2 & '>=' & Max(Value))"}>} Value, ', ')

View solution in original post

4 Replies
Chanty4u
MVP
MVP

sort tab  sort by ascending by value.

or

in dimension limit   give 5

samuel_brierley
Creator
Creator
Author

no i would like to use the return the value in a text box

sunny_talwar

May be this:

In a chart

Only({<Value = {"$(='<=' & Max(Value) - 2 & '>=' & Max(Value))"}>} Value)

In a text box

Concat({<Value = {"$(='<=' & Max(Value) - 2 & '>=' & Max(Value))"}>} Value, ', ')

samuel_brierley
Creator
Creator
Author

Cheers sunny