I have run a report and then grouped values. However some of these values have a 'null' or empty value. How do i change this so that the group name is not blank.
I have tried the following but this does not help:
IF {Subset.SCHOOLCAT} = '' THEN 'other'
It simply blanks out all group names.
I am doing this report on a HEAT System and i know that the reason for this null field is that we have two types of customers and one customer type does not have this field in its tables so it returns the value as blank.
I just need to replace this empty value with a string for consistency value but cannot seem to do it.
Regards
PIF {Subset.SCHOOLCAT} = '' THEN 'other'
Instead of the above code, try the following code
IF IsNull({Subset.SCHOOLCAT}) THEN 'other'|||Many thanks - that seemed to work.
Cheers
T
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment