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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
gkcchowdary
Creator
Creator

set analysis exepression top batting

Hi guys ,

I am loading a data into qlik view through webfiles.

the fields are 1)batting. 2) R (runs)

3) W (wickets) like this .

I want display only max  and min batsmen scored.using set expressions.

1 Reply
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try

For Max Batsman

Only(Aggr(If(Rank(Sum(Runs)) = 1, BatsMan), BatsMan))

For MinBatsman

Only(Aggr(If(Rank(-Sum(Runs)) = 1, BatsMan), BatsMan))

Regards,

Jagan.