vote up 2 vote down star

I have the following as the value for my textbox in SSRS report:

   =iif(IsNothing(Fields!MyDate.Value), "", Format(Fields!MyDate.Value.AddDays(30), "MMMM dd, yyyy"))

It gives me an "#Error" every time MyDate is null.

How do i work around this?

UPDATE:

i wrote this custom function, it got rid of the error, but returns January 31, 0001 when null date is passed.

Public Shared Function NewDate(myDate as DateTime, days as integer) AS string
IF ISNOTHING(myDate) OR ISDBNULL(myDate) Then
    NewDate = "        "
ELSE
    NewDate = Format(myDate.AddDays(days), "MMMM dd, yyyy")
END IF
End Function

@Matt Hamilton: DateAdd("d", 30,Fields!MyDate.Value)

flag

Why does it have to be inline? – Erik Sep 25 '08 at 23:09
Cuz up until 10 minutes ago i didn't know about "Custom Code" in SSRS :) – roman m Sep 25 '08 at 23:24

1 Answer

vote up 3 vote down check

The problem, of course, is that VB's IIF statement evaluates both sides regardless of the outcome. So even if your field is null it's still evaluating the "Value.DateAdd" call.

If I recall correctly, SSRS has its own "DateAdd" function that you can use instead. So you can do something like this (check the documentation 'coz this is from memory):

=Iif(IsNothing(Fields!MyDate.Value), "", Format(DateAdd("d", 30, Fields!MyDate.Value), "MMMM dd, yyyy"))
link|flag
switch the parameters in the function, 30 should be #2 thanx – roman m Sep 25 '08 at 23:29
Done! Thanks roman. – Matt Hamilton Sep 25 '08 at 23:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.