Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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,
Go to Pivot table properties -> Presentation Tab-> Uncheck suppress zero- values
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.
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
Sorry,
I have done it also.
but problem still same.
Try
Alt(Sum(Sales),0)
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
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
Thanks MANCINI,
Alt() also not useful for me, What Alt() does.
Alt(x,y)
If x espression is valid expression (e.g. non null) returns x, else y
Regards