It is difficult to understand what you are trying to do. What is the
real-world situation behind your efforts? Are both queries based on the
same table? You can add several tables to a query, but they won't work
together unless there is some sort of relationship between them (or if you
create a union query, as scubadiver asked about). However, since for a
union query you need to write SQL directly (rather than creating it through
design view), you would probably know if you had created one.
If the queries are both from the same table, you may need to change the join
type to get the results you want. In query design view, click the line that
links the two queries, then click View > Join Properties. The descriptions
for the join types may guide you in the right direction.
"kim" <(E-Mail Removed)> wrote in message
news

29CDAF7-7765-43E4-A207-(E-Mail Removed)...
> Firstly I'm not sure what a union query is- i am creating this 'linking'
> query to link 2 previous queries in order to create a report from the
> final
> query. In query 1 there are 4 fields i want to add- one of them being the
> 'date' field'. From the second query there is one field I want to add.
> For
> some dates, the field from the second query dosn't contain any data-
> although
> i still want this date to appear in the query- apologies if this doesn't
> make
> sense. Do you understand what i mean?
>
> "scubadiver" wrote:
>
>> Two immediate questions:
>>
>> 1) Are you creating a union query
>> 2) What is the table design?
>>
>>
>>
>>
>>
>> "kim" wrote:
>>
>> > I'm trying to create a query from other queries, all of which have a
>> > 'date'
>> > column. However not all the queries have the same dates in e.g one
>> > query may
>> > only have entries for 01/01/2006 and then for 05/01/2006 but not for
>> > any
>> > dates inbetween these dates, although other queries may have. But the
>> > new
>> > query seems to ignore the fact that other queries have data for these
>> > dates
>> > inbetween and only display data for the dates that appear in the first
>> > query.
>> > I want ALL dates that have data entries to appear, even if some
>> > columns will
>> > have no entries (as some queries have no data for that date)- how do i
>> > stop
>> > this? Please help- deeply distressed!