Hi SSRSRpt,
Based on your recent posts, I assume you are using Reporting Services 2005. If not, please let me konw.
In order to hide point lable if value is 0 in Reporting Services 2005, please refer to the steps below:
- Right click the chart and select Properties, then select the Data tab in the Chart Properties window.
- Double click [Value] in Values list.
- In the Value tab, if the original Value property is =Sum(Fields!fieldname.Value), please modify it to
=IIf(Sum(Fields!fieldname.Value)=0,Nothing,Sum(Fields!fieldname.Value))
Thanks,
Tony Chain
Tony Chain [MSFT]
MSDN Community Support |
Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.