I'm using formula by grouping records in my report like this:
field1 + field2 + field3
But when a field inside the formula is null (for example field2
) Crystal Reports not groups records properly; So I have to insert in the formula a condition like:
field1 + (if isnull(field2) then "" else field2) + field3
But there is a method to tell to Crystal Reports that when he find a null value it must return a default value that I have set?
Or is there a method to 'initialize' fields so that recognizes a null field as ""?