expression in textbox for blank

  • hi

    i need to check if the variable contains nothing there should be 0 value display in report.

    =iif(Variables!YearCurrentshort.Value = " " ,0 , Variables!YearCurrentshort.Value)

    i am getting error,

    how to check for blank value

  • riya_dave (5/30/2012)


    hi

    i need to check if the variable contains nothing there should be 0 value display in report.

    =iif(Variables!YearCurrentshort.Value = " " ,0 , Variables!YearCurrentshort.Value)

    i am getting error,

    how to check for blank value

    =iif(isNothing(Variables!YearCurrentshort.Value) = true, 0 , Variables!YearCurrentshort.Value)

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply