Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

Chart requirements

How can I show the field if it doesnot have values .

Please see the below requirement :

Capture.PNG

the first reporting code/item doesnot have any order value , thus it not showing in the chart.

My requirements is, I need to show the order row with '0' values .

15 Replies
suvechha_b
Creator III
Creator III
Author

But the particular Item is not having order data , then how can I show '0' ?


Can you help me how to manually insert the rows with zero. ?

ahmar811
Creator III
Creator III

I you want to show Zero if data in not available

just put '0' on Null symbol and Missing symbol in Presentation tabCapture.JPG

and another option is you can put the condition on Dimension like

if(isnull(order) or order=' ' or order='','0',order)

hope this help you

suvechha_b
Creator III
Creator III
Author

Order field is not dimension field .

Order is calculative field :

=sum({<[Fin Year]=,[Fiscal Month]=,[Sale Month]={$(vCurrMonth)} >} $(vCalc))

and there are many calculative fields.

Kushal_Chawda

= if( isnull(YourExpression),0,YourExpression)

or

alt(YourExpression,0)

Now go to presentation and uncheck suppress zero value

jagan
Luminary Alumni
Luminary Alumni

Hi,

Check this link

How to display 0 when there is no record

Regards,

Jagan.

Not applicable

You have to uncheck that property as said by other community members.

You can write our expression as sum(0) +  your expression

Thanks

Khushboo