Hi All,
I hope you are all well.
I am trying to get a query to sort on 3 variables. The first two are sorting correctly but the third isn't.
The query is run from a table and the data is only used for a report.
I have enclosed the sql, am i asking to much? (Still a little new to access)
SELECT tblJobs.InstLastName, tblJobs.SchedInstallDate, tblJobs.Suburb, tblJobs.ClientName, tblJobs.ClientMobile, tblJobs.BuilderAbbr, tblJobs.SuperFirstName, tblJobs.SuperMobile, tblJobs.LotNo, tblJobs.HseNo, tblJobs.Street, tblJobs.InstallType, tblJobs.RhoodType
FROM tblJobs
WHERE (((tblJobs.JobStatus)="Scheduled"))
ORDER BY tblJobs.InstLastName, tblJobs.SchedInstallDate, tblJobs.Suburb;
Thanks in advance.
Paul
I hope you are all well.
I am trying to get a query to sort on 3 variables. The first two are sorting correctly but the third isn't.
The query is run from a table and the data is only used for a report.
I have enclosed the sql, am i asking to much? (Still a little new to access)
SELECT tblJobs.InstLastName, tblJobs.SchedInstallDate, tblJobs.Suburb, tblJobs.ClientName, tblJobs.ClientMobile, tblJobs.BuilderAbbr, tblJobs.SuperFirstName, tblJobs.SuperMobile, tblJobs.LotNo, tblJobs.HseNo, tblJobs.Street, tblJobs.InstallType, tblJobs.RhoodType
FROM tblJobs
WHERE (((tblJobs.JobStatus)="Scheduled"))
ORDER BY tblJobs.InstLastName, tblJobs.SchedInstallDate, tblJobs.Suburb;
Thanks in advance.
Paul