So my challenge is to take the quantity of Chips and Units of Chips in Table 1 and copy it into the On Hand Amount and Units for Cookies and Donuts in Table 2. I have a start below, but I'm still missing how to populate with only "chips" data.
UPDATE [Table 2].[On Hand Units]
SET [Table 2].[On Hand Units]="kg"
WHERE (([Table 1].[Units]) LIKE "*kg") AND (([Table 2].[Store ID]) NOT LIKE "234" OR "456");
UPDATE [Table 2].[On Hand Amount]
SET [Table 2].[On Hand Amount]=[Table 1].[Quantity]
WHERE (([Table 1].[Units]) LIKE "*kg") AND (([Table 2].[Store ID]) NOT LIKE "234" OR "456");