报告查看器 - 将任何0值转换为显示空白或空值

时间:2015-10-10 11:30:03

标签: c# reportviewer

如何将任何0值显示为空或为空? 我可以在报表查看器中执行条件表达式吗

更新:这是我试过的

=IIf(FormatNumber(Fields!totalnetamaount.Value, 2) is 0, "", FormatNumber(Fields!totalnetamaount.Value, 2))

它抛出异常

  

错误1 textrun的Value表达式   'totalnetamaount.Paragraphs [0] .TextRuns [0]'包含错误:   [BC30020]'是'运算符不接受类型'整数'的操作数。   操作数必须是引用或可空的   类型。

1 个答案:

答案 0 :(得分:1)

将“是”替换为“=”。 修改您的条件,如下,

=IIf(FormatNumber(Fields!totalnetamaount.Value, 2)=0, "", FormatNumber(Fields!totalnetamaount.Value, 2))