SQL 2005 Reporting Services if check for null

前端 未结 5 440
Happy的楠姐
Happy的楠姐 2021-01-19 00:41

In SSRS 2005 I have a table with a dataset linked to it. I want to check if the value of a field is null and if it is not null then format the data to make sure it has one d

5条回答
  •  旧时难觅i
    2021-01-19 01:26

    You could check for null in the SQL query instead of at the report level. Like IsNull(fieldname,0) then just format for the %. Provided of course your data is from SQL Server.

提交回复
热议问题