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
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.