Price Calculations

T

THernan102

I have a Brands table which contains three fields which
are BrandID, Brand, MarkUp. I also have a products table
which contains the fields Sku, Description, Cost, Price,
BrandID. In my form, after I enter the BrandID I want a
markup field to synchronize with the markup of the Table:
Brands so that the price field is equal to the cost field
times the markup field. How can I do this.
 
M

Michel Walsh

Hi,


Base the form on a query that should be something like:


SELECT Brands.BrandID, Brand, Markup, Sku, Description, Cost, Price, Cost+Markup As SuggestedPrice
FROM Products INNER JOIN Brands ON Products.BrandID=Brands.BrandID


You have to specify the table, as in Brands.BrandID, if the field, here BrandID, can come from
within two different tables.



Hoping it may help,
Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top