Hello,
I have a crystal report that contain 3 fields I want to add together to get the line total. If any field is blank or null, I do not get a total. This is what I get:
F1 F2 F3 Row Total
48 24 12 84
10 8
12 1
This is what I want:
F1 F2 F3 Row Total
48 24 12 84
10 8 18
12 1 13
The formular for my Row Total is: F1+F2+F3
I have used in each field: If IsNull ({f1}) then {F1} =0 else {F1} = {F1}. I used the same formular in the other fields but it does not work. Please help.
I have a crystal report that contain 3 fields I want to add together to get the line total. If any field is blank or null, I do not get a total. This is what I get:
F1 F2 F3 Row Total
48 24 12 84
10 8
12 1
This is what I want:
F1 F2 F3 Row Total
48 24 12 84
10 8 18
12 1 13
The formular for my Row Total is: F1+F2+F3
I have used in each field: If IsNull ({f1}) then {F1} =0 else {F1} = {F1}. I used the same formular in the other fields but it does not work. Please help.