I am creating 7 groups in my report as follows:
If {aa_s.factor} < .10 Then
0
Else
If {aa_s.factor} < .20 Then
.2
Else
If {aa_s.factor} < .30 Then
.3
Else
If {aa_s.factor} < .40 Then
.4
Else
If {aa_s.factor} < .50 Then
.5
Else
If {aa_s.factor} < .60 Then
.6
Else
If {aa_s.factor} > .60 Then
1
The problem is no matter if a value for each range exist or does not exist, the group name must be displayed. Is there a simplest way to do it within Crystal? Instead of creating another table and outer joining it or using UNION query. Thanks,
If {aa_s.factor} < .10 Then
0
Else
If {aa_s.factor} < .20 Then
.2
Else
If {aa_s.factor} < .30 Then
.3
Else
If {aa_s.factor} < .40 Then
.4
Else
If {aa_s.factor} < .50 Then
.5
Else
If {aa_s.factor} < .60 Then
.6
Else
If {aa_s.factor} > .60 Then
1
The problem is no matter if a value for each range exist or does not exist, the group name must be displayed. Is there a simplest way to do it within Crystal? Instead of creating another table and outer joining it or using UNION query. Thanks,