S
Sussman, Alex
Hi, I am trying to eliminate NULL values when grouping in Access but
it does not seem to work!
I have a table that looks like this:
ID CreateDate CloseDate
1 10/01/2008 NULL
1 NULL 10/15/2008
I would like my result to be :
ID CreateDate CloseDate
1 10/01/2008 10/15/2008
The query I am using is the following:
Select ID, CreateDate, CloseDate
from Table1
Group by CreateDate, CloseDate
If I wrote this exact same query in MS SQL, it would eliminate the
NULL values (i can rename null to whatever i want here or even just
leave the values blank), however they are not eliminated in access.
How do I group to get the results I need?? Any help would be greatly
appreciated!
it does not seem to work!
I have a table that looks like this:
ID CreateDate CloseDate
1 10/01/2008 NULL
1 NULL 10/15/2008
I would like my result to be :
ID CreateDate CloseDate
1 10/01/2008 10/15/2008
The query I am using is the following:
Select ID, CreateDate, CloseDate
from Table1
Group by CreateDate, CloseDate
If I wrote this exact same query in MS SQL, it would eliminate the
NULL values (i can rename null to whatever i want here or even just
leave the values blank), however they are not eliminated in access.
How do I group to get the results I need?? Any help would be greatly
appreciated!