Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible to show zero values if the data is not presented in the back end??
For e.g
Jan 2015 300
Apr 2015 200
May 2015 100
So I want to show zero values for remaining months where data is not presented.
And for Last three months i.e Aug 2015,Jul 2015 and Jun 2015, the colour should be red.
i want to show this in line chart.
Please help me!!!
Its urgent!!!
Regards,
Kavita
Do you have a master calendar with the remaining months in the application?
use the combination of master calendar and join ...to populate the missing
mastercalendar can do that
Yess... to generate the rest of the months I have used Master Calendar
Have you tried unchecking 'Suppress Zero Values' on the Presentation tab??? May be that will helps
I have tried everything in front end...
I am able to achieve zero values for the rest of the month from front end..
But Last three months values is not identified by red colour.
Here is an example:
Script:
Table:
LOAD MonthName(Date) as MonthYear,
Value;
LOAD * Inline [
Date, Value
01/01/2015, 300
02/01/2015, 200
03/01/2015, 100
];
MasterCalendar:
LOAD MonthName(Date) as MonthYear;
LOAD * Inline [
Date
01/01/2015
02/01/2015
03/01/2015
04/01/2015
05/01/2015
06/01/2015
];
Straight Table
Dimension: MonthYear
Expression: =If(Len(Trim(Value)) = 0, 0, Value)
Output:
Suppress Zero-Values is unchecked:
HTH
Best,
Sunny
Here is the screenshot for a line chart with Black for monthsyears with data and red for monthyears with no data:
I want the red colour for last three months, not for zero values.
In ur attached example u have coloured to those values where its zero...