Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 nishanthlm
		
			nishanthlm
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi all,
I have a requirement to show top 10 accounts by sales in a table.(Done using Dimension limits)
I have to show the top 11-20 in another table.
I would need these 2 tables as i have to pull them into 2 different slides using N printing.
Could any one help me on how to show top 11-20 account based on sales in a seperate table in qlikview???
 
					
				
		
 vinieme12
		
			vinieme12
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Remove Dimension Limits from both Tables
Add Set analysis to expression as example
for 1 -10
sum({<Account={"=rank(sum(Sales),1,1)<=10"}>} Sales)
for 11-20
sum({<Account={"=rank(sum(Sales),1,1)>10"}>*<Account= {"=rank(sum(Sales),1,1)<=20"}>} Sales)
 nishanthlm
		
			nishanthlm
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thankyou...
I have achieved with below expression
if(Rank(Sum([Field]))<=30 and Rank(Sum([field]))>20, sum([field]))
 
					
				
		
 sarvesh
		
			sarvesh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Can you share your data with me.
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be using Rank() function... what is your expression and what all dimensions do you have?
 
					
				
		
 vinieme12
		
			vinieme12
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Remove Dimension Limits from both Tables
Add Set analysis to expression as example
for 1 -10
sum({<Account={"=rank(sum(Sales),1,1)<=10"}>} Sales)
for 11-20
sum({<Account={"=rank(sum(Sales),1,1)>10"}>*<Account= {"=rank(sum(Sales),1,1)<=20"}>} Sales)
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I would handle this a slight different way
Instead of this
sum({<Account={"=rank(sum(Sales),1,1)>10"}>*<Account= {"=rank(sum(Sales),1,1)<=20"}>} Sales)
I would use this
sum({<Account={"=Rank(Sum(Sales),1,1) > 10 and Rank(sum(Sales),1,1) <= 20"}>} Sales)
Result wise no difference, but I feel its easier to read 
 nishanthlm
		
			nishanthlm
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thankyou...
I have achieved with below expression
if(Rank(Sum([Field]))<=30 and Rank(Sum([field]))>20, sum([field]))
