Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI
Wondering if anyone can help feel like im banging my head against a wall !
I have this bar chart which is currently stacked to show tasktype, it also has two other dimensions year and month.
I have the problem in that it is showing me months which have no data,
I have tried cliking suppress 0 values on the dimension and the presentation tab to no avail ! can anyone help ?
I cant use drill downs for this graph as they want it showing on an nprinting slide.
Thanks
Sarah
hi!
can you share your qvw or some sample?
Hi Tatsiana,
The data is sensitive so I tricky I've extracted some details on the graph :
Better to provide sample application
Is there a way to scramble or encrypt the data sorry never done this before ?
Hey Sara,
Did you tried using a WHERE clause like this:
YourTable:
LOAD *
FROM [pathtoyourdatabase]
WHERE Value <> 0;
This method should eliminate the 0 values
Regards,
MB
Create dummy data and provide sample application.
Hi Miguel
I cant do it unfortunately as other columns with data we need to include for those rows if that makes sense
try this expression
count(distinct if(tsk_id<>'',tsk_id))
Maybe if you do something like this:
=if(tsk_id == '', NULL(), count(distinct tsk_id))
Then check "Surpress Vhen Values In Null".