dianemarie
Instructor
Hello, I've seen other posts about showing 0 as null, but I want to (I think) show no data as 0, so as to get a data point on the chart equal to 0. I have a simple line chart, by month (X - category), year (series) and order quantity (Y - data field). If there is no order quantity for a given month (ex: April 2008), the line chart goes from March to May in one unbroken line for that year. I would like it to (and by "I" I mean the user, I could live with it...) go from March to 0 for April & then from 0 to May. The month field is calculated as is the year:
=month(Fields!OrdDate.Value)
I have tried doing a calculated field and pulling it onto the data field but it doesn't work:
=iif(IsNothing(Fields!ordrqty.Value),0,
(Fields!ordrqty.Value)) I've tried several versions of this, including doing the IsNothing part on the Month calculation.
Is it possible to do this? Thank you for any help.
=month(Fields!OrdDate.Value)
I have tried doing a calculated field and pulling it onto the data field but it doesn't work:
=iif(IsNothing(Fields!ordrqty.Value),0,
(Fields!ordrqty.Value)) I've tried several versions of this, including doing the IsNothing part on the Month calculation.
Is it possible to do this? Thank you for any help.