I am having a problem sorting my query(though the sort could be done in the form also, if it would be easier).
I have two date columns, one, schedule date, has dates in every row, the other is build date, this date is filled in using a form. But not all rows are filled in, most are left blank. I want my sort to show the build dates first, then for all the rows without build dates, sorted by schedule date. I thought that just sorting as:
ORDER BY scheduleandform.[Build Date], scheduleandform.SCHED_DATE;
would accomplish what I needed, but it does not. When I sort like this it gives me all the build date blank rows first.
C. Johnson
I have two date columns, one, schedule date, has dates in every row, the other is build date, this date is filled in using a form. But not all rows are filled in, most are left blank. I want my sort to show the build dates first, then for all the rows without build dates, sorted by schedule date. I thought that just sorting as:
ORDER BY scheduleandform.[Build Date], scheduleandform.SCHED_DATE;
would accomplish what I needed, but it does not. When I sort like this it gives me all the build date blank rows first.
C. Johnson