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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Remove - in expression

Hi

The following is from a hierarchy.  I have added a drop list object to my app and have created concatenate expression on the LocalServiceLine and Specialty field.  However, I do not want to include any specialty with '-'.  How can i do this.

tableview.PNG.png

14 Replies
ashfaq_haseeb
Champion III
Champion III

Hi

Try this in backend.

Load *

From table where len(speciality)>0;

Regards

ASHFAQ

Not applicable
Author

Hi

I need to include that that as its using the hierarchy method. 

vardhancse
Specialist III
Specialist III

So you are trying to exclude null values is that correct ?

Not applicable
Author

yeas in this example

ali_hijazi
Partner - Master II
Partner - Master II

in your expression in set analysis use {<Specialty = {"*"}>}

I can walk on water when it freezes
vardhancse
Specialist III
Specialist III

Then once can try in chart properties->Dimensions<tab>->select the required dimension->Suppress when value is null

Not applicable
Author

I am using a list box object so no option for that.

alkesh_sharma
Creator III
Creator III

Use where expression during load.

Where Specialty <> '';

Not applicable
Author

Like I said I do not want to loose the null in the load script. How can i do this in the expression in the object.  My expression in the list object is: = LocalServiceLine & ': ' & Specialty