Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
What am I trying Achieve?
I want to get a table with All the customer name and their total number of orders.
What I have tried so far?
I have tried Pivot table and straight table in charts as below
Dimension as CustomerName
Expression as count(OrderID)
- But this is only showing customers that have placed any orders
Here is a small example of my data model
ORDER QVD
CUSTOMER QVD
Thanks
try creating the straight table
Dimension as CustomerName
Expression as alt(count(distinct OrderID),0)
Go to chart Properties->Presentation-> Uncheck Suppress zero values
try to load all the data and join the table
and write a condition lik
set Nullvalue='0';
sample:
load *,
......
......
from ur datasource;
Where [order total]='0';
PFA
Un-check 'Suppress Zero Values' in presentation tab.
try creating the straight table
Dimension as CustomerName
Expression as alt(count(distinct OrderID),0)
Go to chart Properties->Presentation-> Uncheck Suppress zero values
Thanks ..
Welcome