TravisRabe
IS-IT--Management
Hello,
I have been trying to use a formula to test cells for NULL. IF they are null I want it to return a string, if it's not NULL, I want it to return the string in the cell. However, everytime I do this, it automatically reduces the number of records to those only containing a string. All of the cells that have a NULL vlaue are immediately taken from the report. Here is the code I am using.
if {Schools.SchoolName} = ' ' then
'TRUE'
else
'FALSE'
And what if I don't want it to return boolean, but strings?
I have been trying to use a formula to test cells for NULL. IF they are null I want it to return a string, if it's not NULL, I want it to return the string in the cell. However, everytime I do this, it automatically reduces the number of records to those only containing a string. All of the cells that have a NULL vlaue are immediately taken from the report. Here is the code I am using.
if {Schools.SchoolName} = ' ' then
'TRUE'
else
'FALSE'
And what if I don't want it to return boolean, but strings?