sammers101
Registered User.
- Local time
- Today, 18:35
- Joined
- May 11, 2012
- Messages
- 89
This worked before, not sure why it is no longer working
Here is my query
INSERT INTO [add to list] ( Series2, Publisher, comic, Qty, special )
SELECT [diamond order].Series, [diamond order].Publisher, [diamond order].comic, [diamond order].Qty, [special subs new].special
FROM [special subs new] INNER JOIN tblCustomers ON [special subs new].CustomerID = tblCustomers.fldCustomerID, [Comic Series] RIGHT JOIN [diamond order] ON [Comic Series].Series = [diamond order].series
WHERE ((([diamond order].Series) Like "*" & [orig] & "*") AND (([Comic Series].Series) Is Null) AND ((tblCustomers.delete)=False) AND ((tblCustomers.skippable)=False));
Dumbed down even this is not working:
SELECT [diamond order].Series
FROM [special subs new], [diamond order]
WHERE ((([diamond order].Series) Like "*" & [orig] & "*"));
Thanks everybody! No one ever showed me how to use access but these forums have really helped me create a wonderful program. A previous employee once told me that pen and paper was better in every way (I started creating it because I could not even read what he wrote)...He was SO wrong. I use it to track our sales, inventory, check in orders, keep track of customer's special orders and so much more.
Here is my query
INSERT INTO [add to list] ( Series2, Publisher, comic, Qty, special )
SELECT [diamond order].Series, [diamond order].Publisher, [diamond order].comic, [diamond order].Qty, [special subs new].special
FROM [special subs new] INNER JOIN tblCustomers ON [special subs new].CustomerID = tblCustomers.fldCustomerID, [Comic Series] RIGHT JOIN [diamond order] ON [Comic Series].Series = [diamond order].series
WHERE ((([diamond order].Series) Like "*" & [orig] & "*") AND (([Comic Series].Series) Is Null) AND ((tblCustomers.delete)=False) AND ((tblCustomers.skippable)=False));
Dumbed down even this is not working:
SELECT [diamond order].Series
FROM [special subs new], [diamond order]
WHERE ((([diamond order].Series) Like "*" & [orig] & "*"));
Thanks everybody! No one ever showed me how to use access but these forums have really helped me create a wonderful program. A previous employee once told me that pen and paper was better in every way (I started creating it because I could not even read what he wrote)...He was SO wrong. I use it to track our sales, inventory, check in orders, keep track of customer's special orders and so much more.