Well, here's what I'm trying to do...
I have a query with the above information (Task, Description, and Type) and then I have another query with 'Date'. I want to be able to get Task, Descr, Type, and Date from the database.
I think I want to do something like this (but haven't tried it yet)
Select [Query - All].[Task #], [Query - All].Description, [Query - All].Type, [Query - Not Available].Date
From [Query - All], [Query - Not Available]
Would that seem about right?