I am looking to automate a worksheet to pull data down from a database, so far so good. the next step i need to do is to have 2 fields multiply. i am not sure what code i am missing in my SQL, here is my working sql to pull the data down...
SELECT Results.Description, Results.Unit, Results.Location, Results.Price, Extra.Quantity
FROM Extra Extra, Results Results
WHERE Results.PKey = Extra.Pkey2
ORDER BY Results.Description
any ideas, thoughts, comments, etc... would be greatly appeciated. thanks.
adam