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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anil_Babu_Samineni

List Box Problem

Hello Community,

In my excel, i have like

Ename, Sal

A, 10

B, 20

C, 30

While i ma fetching this data to list box in Qlikview. I got three names but, I am getting 1 more space space also will come. Can you assist me please

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
17 Replies
Anil_Babu_Samineni
Author

This is Live, Check this and Let me know. For Main sheet i have Furnace - Check why this Space came?

Second Issue

Shee2 -- I have Drill down. If we select then should show associative only. Please choose Plant and see. Why This Others will showing here?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
avinashelite

use this condition in the list box

if(len(trim(Furnace))>0,Furnace)

if you want to eliminate the data the script level then use the condition in the script level

Issue2 : The problem is with the Expression what you have written , its not finding any count for the set analysis what you have written hence its not showing the result , to check this just disable the current condition and add a simple expression like 1 then try the drill down

Hope this helps you

beck_bakytbek
Master
Master

Hi Anil,

You can use whithin your ListBox: check in General: Field: Expression:

and enter this Expression: if(Ename= '-',Null(),Ename)

i hope that helps

beck

Anil_Babu_Samineni
Author

First one is Resolved and how about Second one?

PFA. Here, Why - Values showing.

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
avinashelite

Go to chart Properties > Dimensions > check  the suppress null values .

This is resolve the second issue

Anil_Babu_Samineni
Author

Yes, But That is the Second Dimension in Drill Down

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
avinashelite

It will apply for the all the dimensions rite ?? please check

Chanty4u
MVP
MVP

try this

Alt(Ename,' ') as Ename,


or


If(Len(Trim(Ename))=0,' ',Ename) As Ename