Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
i have a straight table in my dashboard that should show the count of two thing for each office and it can be filterd by date.
when i chose some date, the straight will show the office that have value on their expessions, but i want to show all office.
for example when i chose year 2014 i want to see sth like this:
Office | Count(A) | Count(B) |
---|---|---|
100 | 10 | 20 |
200 | 12 | 15 |
300 | 10 | 0 |
400 | 0 | 0 |
but normaly straight shw sth like this:
office | Count(A) | Count(B) |
---|---|---|
100 | 10 | 20 |
200 | 12 | 15 |
300 | 10 | 0 |
because office number 400 have no value for both experssion
what should i do?
Hi,
You need to replace null symbol with 0.
As shown in image attached.
Even application is attached.
Hope it helped.
Regards
ASHFAQ
i want to see the office value not 0
??
Hi,
For that you need to have data at every grain.
For you same selection of 2014.
User below script.
load * Inline
[
state,Office,A,B,year
c,100,10,20,2012
c,100,0,0,2014
d,200,12,15,2013
d,200,0,0,2014
e,300,10,0,2014
f,400,0,0,2015
f,400,0,0,2014
];
Hope it helped.
Regards
ASHFAQ
i think that is not a good solution
because i should genaret a lot of record on my DB
i should find tsome way to handle it from qlikview option not with quer
Hi,
If possible can you share your sample app.
To help you out here.
Regards
ASHFAQ