BusinessObjects Board

How to show blank dataset on graph

Hi,

I have a query which returns all events within the last 8 weeks. This data is displayed on a bar chart. If one week has no records it is automatically not shown on the chart. Is there anyway of showing this week and having the data value show as 0. Basically, I always want to see 8 weeks on the chart.

Regards

Chris


chris_nunn :uk: (BOB member since 2013-01-11)

You can try creating a report variable that will display a “0” if the record has no data. Similar to this:

=If(IsNull([Object])) Then "0" Else [Object]

Use this variable for the graph.


mwinchel :us: (BOB member since 2011-12-13)

Hi,

Check also this Reporter’s FAQ:


Marek Chladny :slovakia: (BOB member since 2003-11-27)