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: 
prma7799
Master III
Master III

straight table

Hi Experts,

Is it possible in straight table to show top 25 to 50 customers.

Thanks,

Prashant

Labels (1)
1 Solution

Accepted Solutions
jyothish8807
Master II
Master II

Yes it is possible.

Try in dimension,

if(Aggr(Rank(Sum(Sales)),Customer)>=25 and Aggr(Rank(Sum(Sales)),Customer)<=50 ,Customer)

in expression:

Sum(Sales)

This is just an example.

Regards

KC

Best Regards,
KC

View solution in original post

7 Replies
jyothish8807
Master II
Master II

Yes it is possible.

Try in dimension,

if(Aggr(Rank(Sum(Sales)),Customer)>=25 and Aggr(Rank(Sum(Sales)),Customer)<=50 ,Customer)

in expression:

Sum(Sales)

This is just an example.

Regards

KC

Best Regards,
KC
its_anandrjs
Champion III
Champion III

Hi,

Yes try the expression as calculated dimension or add the rowno90 field in the load script

RowNo(0 as row count

In chart

If( RowNo() >= 25 and Rowno() <= 50, [Customer Name])

Regards

Anand

rajeshvaswani77
Specialist III
Specialist III

have expression in sort and then use dimension limits.

thanks,

Rajesh Vaswani

prma7799
Master III
Master III
Author

Anand

I didn't get you ...

suppose I have data like below

LOAD * INLINE [

    Empl, Sales

    1, 10

    2, 20

    3, 30

    4, 40

    5, 50

    6, 60

    7, 70

    8, 80

    9,90

    10,100

];

and I want to see 3 to 8 empl in straight table.

Thanks

Prashant

jyothish8807
Master II
Master II

try like this,

in Calculated Dimension:

if(EmpI>=3 and EmpI<=8,EmpI)

In Exp:

Sum(Sales)

Regards

KC

Best Regards,
KC
amit_saini
Master III
Master III

Hi,

Check this.

Thanks,

AS

Anonymous
Not applicable

Hi,

If you have two limits(Lower & Upper) use rank function like below:

Dimension Tab - Add Calculated dimension:

if(Aggr(Rank(Sum(Sales)),Empl)>=3 and Aggr(Rank(Sum(Sales)),Empl)<=8 ,Empl)

Expression Tab - Add new Expression:

Sum(Sales)

For only one limit(Upper or Lower) use Dimension limits tab:

QV_ver2.png

Regards

Neetha