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: 
tyagishaila
Specialist
Specialist

show all dimension values

Hi All,

I have some stores which are yet to open, that's why in sale table we have no data against that store.

But when we create chart we need to show all stores, for those store which are yet to open sale can be '0' or '-'.

My problem is that , My pivot table is not showing those stores for which no sale happen.

Please help me, how can I show all stores.

Thanks,

14 Replies
Kushal_Chawda

Go to Pivot table properties -> Presentation Tab-> Uncheck suppress zero- values

tyagishaila
Specialist
Specialist
Author

Thanks for quick reply,

I have done it, I have also checked Show All Values for dimension

Problem is, expressions don't have Zero value,

these stores are not open, So sale table has no data against these stores.

Kushal_Chawda

what is the expression you are using?

Try below expression and then do the setting as I suggested before

if(isnull(sum(sales)) ,0,sum(sales))

Also uncheck suppress null values for dimension

tyagishaila
Specialist
Specialist
Author

Sorry,

I have done it also.

but problem still same.

antoniotiman
Master III
Master III

Try

Alt(Sum(Sales),0)

Not applicable

I feel there is some other problem which is causing this otherwise unchecking 'Supress Zero-Values' should work.  Please upload sample QVW and data.

Regards,

KKR

avinashelite

try like this:

Go to>presentation tab> uncheck populating missing > and un check the suppress missing this should help you in getting the values .

please find the attached sample

tyagishaila
Specialist
Specialist
Author

Thanks MANCINI,

Alt() also not useful for me, What Alt() does.

antoniotiman
Master III
Master III

Alt(x,y)

If x espression is valid expression (e.g. non null) returns x, else y

Regards