IsNothing error

大憨熊 提交于 2019-12-13 08:02:54

问题


I have the following error which I can't understand from my expression.

=IIF(IsNothing(Fields!month.Value),"6mr",LEFT(Format(DateValue(MonthName(Right(Fields!month.Value, 2))
 + "," + 
 Left(Fields!month.Value,4)), "Y"),3) + " '" + RIGHT(Format(DateValue(MonthName(Right(Fields!month.Value, 2))
 + "," + 
 Left(Fields!month.Value,4)), "Y"),2))

This works perfectly without the IsNothing element.

I have tested the IsNothing element and that works in the following case:

=IIF(IsNothing(Fields!month.Value),"6mr",0).

Help to correct much appreciated.


回答1:


You are experiencing this "issue" because Reporting Services evaluates both sides of the Iif.

This is not really an issue, it is by design, see this technet article for more details:

  • SSRS - IIF function evaluates both True & False

Yes , By design the SSRS evaluates both True & False statements even though the condition is not satisfied and through error if something is not right.

Now, to get your expression working, you have to consider that Fields!month.Value could be nothing even in the false part of your expression.

So in your expression, you could just replace

Fields!month.Value

by

Iif(IsNothing(Fields!month.Value), "1", Fields!month.Value)

Here is an expression with this fix:

=Iif(IsNothing(Fields!month.Value),"6mr",Left(Format(DateValue(MonthName(Right(Iif(IsNothing(Fields!month.Value), "1", Fields!month.Value), 2))
 + "," + 
 Left(Iif(IsNothing(Fields!month.Value), "1", Fields!month.Value),4)), "Y"),3) + " '" + Right(Format(DateValue(MonthName(Right(Iif(IsNothing(Fields!month.Value), "1", Fields!month.Value), 2))
 + "," + 
 Left(Iif(IsNothing(Fields!month.Value), "1", Fields!month.Value),4)), "Y"),2))

You could also create a custom function or use a variable if you want to reduce the expression length.



来源:https://stackoverflow.com/questions/31250706/isnothing-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!