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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
gautik92
Specialist III
Specialist III

Sum

I have a product List in that i have sub category

if i have sum(sales) for that sub category its showing values for -

but i don have sub cat name as - in the products

if i take sub cat in list box - is not showing but if i take sum(sales) its showing sales for -

Untitled.png

3 Replies
Not applicable

the '-' represents null values. In your data model, you must have values for Actual that don't have a corresponding SubCatName (null)

settu_periasamy
Master III
Master III

Hi,

Generally Null value won't dispaly in the ListBox.. 

In your chart, Suppress the Null value in your Dimension..

jagan
Partner - Champion III
Partner - Champion III

Hi,

That - is a null value, null value is not displayed in the List object.  If you want to display some value for try like below

LOAD

*,

If(Len(Trim(FieldName)) = 0, 'NA', FieldName) AS FieldNameNew

FROM DataSource;

Now in place of null values it will display NA.

Regards,

jagan.