SSRS 表达式无法正常工作

SSRS expression not working properly

我的 SSRS 报告中有一个表达式,用于在报告中显示货币数据。当特定行中没有数据 NULL 时,它应该显示 $0。但是,它显示 #Error

=IIF(Fields!Value.Value="Nothing","[=10=]",FormatCurrency(Fields!Value.Value,0))

我也尝试使用 IsNothing 函数,但结果相同。

去掉引号 Nothing..

=IIF(Fields!Value.Value=Nothing,"[=10=]",FormatCurrency(Fields!Value.Value,0))