Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Here are the first three rows of my data
Team Name | Role Count |
---|---|
A | 10 |
B | 10 |
NULL | 11 |
I want the table box/pie chart to display this data from the table as it is. But the table box/pie chart automatically ignores the value - 'NULL' .So instead of getting the total count as 31 in my chart objects, I just get 20. How can I solve this?
Enable the option Show All Values for the Team Name dimension. A better solution is to replace the nulls with real values in the script. See this document for more information: NULL handling in QlikView
Qlikview interprets NULL in the dataset as '-'. I want it to interpret it as a team named 'NULL'
In the dimension of your PieChart try this:
If(isnull([Team Name]), 'NULL VALUES', [Team Name])
DO NOT suppress values where value is null
Let me know
In the presentation tab-> Set Null symbol 'NULL'
does not work
Start from your table (is it a chart?) then transform it in a pie chart, what happen?
Let me know
Can you post sample app