Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
omid5ive
Creator II
Creator II

show full data in straight table

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:

OfficeCount(A)Count(B)
1001020

200

1215
300100
40000

but normaly straight shw sth like this:

officeCount(A)Count(B)
1001020
2001215
300100

because office number 400 have no value for both experssion

what should i do?

14 Replies
ashfaq_haseeb
Champion III
Champion III

Hi,

You need to replace null symbol with 0.

As shown in image attached.

Even application is attached.

Hope it helped.

Regards

ASHFAQ

omid5ive
Creator II
Creator II
Author

i want to see the office value not 0

??

ashfaq_haseeb
Champion III
Champion III

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

omid5ive
Creator II
Creator II
Author

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

ashfaq_haseeb
Champion III
Champion III

Hi,

If possible can you share your sample app.

To help you out here.

Regards

ASHFAQ