D
DavidW
I have got 2 tables that are joined by "veh" and "date". When each record if
the vehicle number is not the same , as in one vehicle did use misc fuel and
gasoline, and the other only used misc fuel, the query will not show both
entries, it will only show both entries by "veh" in the first table
"gasoline" , if there is only misc fuel it will not show up. Kinda
confusing!
Here is an Example
tblgasoline
veh date gal
1 10/10 5.5
2 10/10 11
tblmiscfuel
veh date mgal
1 10/10 45
2 10/10 20
3 10/10 50
what it is doing no
gasquery
veh date mgal gal
1 10/10 45 5.5
2 10/10 20 11
what it needs to do
gasquery
veh date mgal gal
1 10/10 45 5.5
2 10/10 20 11
3 10/10 50
Thanks David
the vehicle number is not the same , as in one vehicle did use misc fuel and
gasoline, and the other only used misc fuel, the query will not show both
entries, it will only show both entries by "veh" in the first table
"gasoline" , if there is only misc fuel it will not show up. Kinda
confusing!
Here is an Example
tblgasoline
veh date gal
1 10/10 5.5
2 10/10 11
tblmiscfuel
veh date mgal
1 10/10 45
2 10/10 20
3 10/10 50
what it is doing no
gasquery
veh date mgal gal
1 10/10 45 5.5
2 10/10 20 11
what it needs to do
gasquery
veh date mgal gal
1 10/10 45 5.5
2 10/10 20 11
3 10/10 50
Thanks David