G
Guest
Need help with this,
This is a query that I'm using to consolidate other queries that perform the
same calculations, only for different date periods.
SELECT [1stPeriod].FltNumOrgDst, [1stPeriod].ExpLF, [2ndPeriod].ExpLF
FROM ((((1stPeriod INNER JOIN 2ndPeriod ON [1stPeriod].FltNumOrgDst =
[2ndPeriod].FltNumOrgDst
GROUP BY [1stPeriod].FltNumOrgDst, [1stPeriod].ExpLF, [2ndPeriod].ExpLF;
The problem I have with it, is that if a FltNumOrgDst doesn't appear in all
the other queries, it eliminates from the consolidating query. It doesn't
return blank or null values I think.
I need it to return every single value for FltNumOrgDst, even if it doesn't
appear in a specific period.
thank you for your help
This is a query that I'm using to consolidate other queries that perform the
same calculations, only for different date periods.
SELECT [1stPeriod].FltNumOrgDst, [1stPeriod].ExpLF, [2ndPeriod].ExpLF
FROM ((((1stPeriod INNER JOIN 2ndPeriod ON [1stPeriod].FltNumOrgDst =
[2ndPeriod].FltNumOrgDst
GROUP BY [1stPeriod].FltNumOrgDst, [1stPeriod].ExpLF, [2ndPeriod].ExpLF;
The problem I have with it, is that if a FltNumOrgDst doesn't appear in all
the other queries, it eliminates from the consolidating query. It doesn't
return blank or null values I think.
I need it to return every single value for FltNumOrgDst, even if it doesn't
appear in a specific period.
thank you for your help