lucky7456969 Posted November 25, 2013 Share Posted November 25, 2013 For a text field expression, when it comes across a null,I want it to print out "N/A" how can I do that?Thanks Link to comment Share on other sites More sharing options...
sambitgudu Posted November 25, 2013 Share Posted November 25, 2013 You need to use expressions.ex : $F{field_name} !=null ? $F{field_name} : "N/A" Link to comment Share on other sites More sharing options...
Sukanya Parisa Posted December 6, 2013 Share Posted December 6, 2013 with a conditional expression you can print "N/A" when the field is null , But your field should be string type other wise u will get type casting error$F{field_name} !=null ? $F{field_name} : "N/A" Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now