Hello,
Here's my situation.The main form built on query of 2 tables,customer s and orders. You can locate a customer through the unbound combo box built on row query (custid, fname, lname). The main form filters by customerid and it's supporting query works on an inner join:
currently there are no orders....(my db is new)....I've only added dummy customers to test out.
when I attempt to select a name from the control....the cursor runs past the name to the next control. so I tried changing the inner join to a left join (for customer table)....same thing happens.
My row query works great in my old database, so it can't be a problem there.....I really need to have these tables joined because of the 'order details' (in subform) that ties them together...
How can I over come this short of making up a ton of dummy orders? thanks
Rosie
Here's my situation.The main form built on query of 2 tables,customer s and orders. You can locate a customer through the unbound combo box built on row query (custid, fname, lname). The main form filters by customerid and it's supporting query works on an inner join:
Code:
FROM Customers INNER JOIN Orders ON Customers.CustomerID=Orders.CustomerID;
when I attempt to select a name from the control....the cursor runs past the name to the next control. so I tried changing the inner join to a left join (for customer table)....same thing happens.
My row query works great in my old database, so it can't be a problem there.....I really need to have these tables joined because of the 'order details' (in subform) that ties them together...
How can I over come this short of making up a ton of dummy orders? thanks
Rosie
Comment