Thanks DJ for your reply.
I do have a Jobname_tbl (job Addresses) and Entries_tbl (all the services).
The entries_tbl Contains Jobname_tbl ID
The Jobname_tbl includes the following columns JodId,JoDate,JobStreet,JobCity
The Entries_tbl Contains the following columns EntryID,JobID Services,Cost
I modified the previous sql and still need some help to add -2 -3 and so on
Code:
SELECT JobName_tbl.JobAddress, JobName_tbl.JobCity, JobName_tbl.JobCivic, JobName_tbl.JobBuilder, [JobEntries_tbl.JobID]+1000 AS Order_Num, JobEntries_tbl.[JobID]
FROM JobName_tbl LEFT JOIN JobEntries_tbl ON JobName_tbl.JobID = JobEntries_tbl.JobID;