how to replace empty celles with a value in my report
Hi I have report in which i have some empty cells how to replace thous empty cells with a value say '0' or 'N/A' what expression can fulfill my requirement?Thanks & Regards $@m
January 5th, 2012 4:15pm

You can set the value of a cell referencing the VBA function IsNothing in an expression: =iif(isnothing(Fields!FieldName.Value), "N/A", Fields!FieldName.Value) Hope that helps! Cheers!Ryan - Please mark all answers and useful posts!
Free Windows Admin Tool Kit Click here and download it now
January 5th, 2012 4:25pm

Hi Waco I have tried this one.. but still i am having empty cells in my reports.. Thanks & Regards $@m
January 5th, 2012 4:32pm

when you run it in SSMS, were those fields NULL or blank? Well you could try either IsNothing or check for "" or use Len function. eg. =iif(IsNothing(somefield) or somefield = "" or Len(somefield) = 0,"N/A",somefield)
Free Windows Admin Tool Kit Click here and download it now
January 5th, 2012 5:10pm

You may also need to test for blank values, e.g.: =iif(isnothing(Fields!FieldName.Value) or (Fields!FieldName.Value = ""), "N/A", Fields!FieldName.Value) Hope that helps! Cheers!Ryan - Please mark all answers and useful posts!
January 5th, 2012 5:11pm

Thank you very much.. now its working... Thanks & Regards $@m
Free Windows Admin Tool Kit Click here and download it now
January 5th, 2012 5:16pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics