Search code examples
sql-serverreporting-servicesssrs-2012

How to show the congested value in bar chart or how to hide value=0 in ssrs?


How to show the congested value in bar chart or how to hide value=0 in ssrs?

enter image description here


Solution

  • You can try this.

    =iif(item.Value=0,"",item.Value)
    

    EDIT

    =IIf(fields!Status.Value = 0, false, true)