Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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
Luminary Alumni
Luminary Alumni

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.