I created a union statement in the command section of Crystal 9. The results of my SQL command did in fact displayed the correct number. So I then placed the data in a crosstab and got the following data returned:
1st 2nd 3rd 4th Total
Cats 1000 10 20 10 10 1050
Dogs 2000 5 6 8 9 2028
I believe values 1000 and 2000 are results of one the SQL statements from the union query. Is there any way for me to get rid of these values?
1st 2nd 3rd 4th Total
Cats 1000 10 20 10 10 1050
Dogs 2000 5 6 8 9 2028
I believe values 1000 and 2000 are results of one the SQL statements from the union query. Is there any way for me to get rid of these values?