BLANK SPACE

  • HI,

    IF THE VALUE IN A COLUMN IS 10 THEN THAT COLUMN HAS TO BE SHOWN BUT JUST BLANK.

    ELSE WHATEVER THA VALUE IS PRESENT.

    =IIF(Fields!Product.Value = 98, " ", Fields!Product.Value)

    BUT GIVING ERROR.

    CAN ANY ONE HELP ME WITH THIS?

  • You might be mixing data types. Try this:

    =IIF(Fields!Product.Value = 98, " ", CStr(Fields!Product.Value))

    A blank space can't be implicitly converted to an int.

  • Hi ,

    Try the below one.

    =IIF(Cint(Fields!Product.Value) = 10, nothing , Fields!Product.Value)

    Thanks,

    Veeren.

    Thanks & Regards,
    Veeren.
    Ignore this if you feel i am Wrong. 😉

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

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