Column with Zero values returned as False

  • This would be the expected result when your data type is BIT.   You can try modifying the query / sproc to force the value as an INTEGER.

    CONVERT(INT, data_value)

    Good luck

    Mike

     

  • You can even change on the report like this...

     

    IIF(Fields!YourColumnName.Value = "false",0,Fields!YourColumnName.Value)

     

    Ramya

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

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