Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have the following chart. How do I get the numbers to display where there are no values?
Thank you!
Can you provide the sample QVW?
Have you tried unchecking 'Suppress Zero-Values' in the presentation tab of the chart?
yes, that is unchecked.
Could you post a sample qvw?
On the dimension property of your chart you could check the "Show all values" checkbox .
If the values do not exist, or are missing (due to incomplete associations in your model), then there is nothing to display. No fiddling with the graph options will help.For example, you will not get C or E in a chart of Sum(Val) from:
LOAD * INLINE
[
Cat, Val
A, 20
B, 5
D, 3
];
But if you combine that with a dimension load that includes the missing values:
LOAD * INLINE
[
Cat
A
B
C
D
E
];
LOAD * INLINE
[
Cat, Val
A, 20
B, 5
D, 3
];
Now you can display a table or chart of Sum(Val) that includes the formerly missing values. Just uncheck the Suppress Zero Values option.