Chimp8471
Registered User.
- Local time
- Today, 15:09
- Joined
- Mar 18, 2003
- Messages
- 353
i have a query that uses data from a series of tables, the trouble i have is that if one of the tables is null i don't get any data returned.
current query:
example:
if i have data in:-
[Mktbl_otherDTime]![Other]
[Mktbl_UnacDTime]![Total]
but no value in:-
[mk_tblBreakdowns]![Breakdowns]
i need the total of tables with data so effectivly the third table will be classed as zero
how should i do this please
Andy
current query:
Code:
Dtime: [Mktbl_otherDTime]![Other]+[Mktbl_UnacDTime]![Total]+[mk_tblBreakdowns]![Breakdowns]
example:
if i have data in:-
[Mktbl_otherDTime]![Other]
[Mktbl_UnacDTime]![Total]
but no value in:-
[mk_tblBreakdowns]![Breakdowns]
i need the total of tables with data so effectivly the third table will be classed as zero
how should i do this please
Andy