Results 1 to 3 of 3
  1. #1
    mircea_s is offline Novice
    Windows 10 Access 2016
    Join Date
    Jan 2019
    Posts
    2

    Relation to calculate price based on commisioning

    Hello,

    Can someone tell me how to create a relationship based on two tables (one with products, and one with commissioning for these products) in order to calculate a price in a third table?

    I am new to access and could not find it anywhere this.



    Greetings

  2. #2
    kd2017 is offline Well, I tried at least.
    Windows 10 Access 2016
    Join Date
    Jul 2017
    Posts
    1,165
    You'll want to create a query instead of a third table. We'll need more information on your database design to give you more specific help. If you can post a screenshot of your table relationship window that would be helpful.

    Google and youtube "Access Queries" will return great general resources on how to use queries. Your query would look something like
    Code:
    SELECT Products.Base_Price * (1+Commissions.Commission_Rate) AS Total_Price FROM Products INNER JOIN Commissions ON Products.ProductID = Commissions.ProductID
    Obviously I made up all the field names and made assumptions, but that should give you an idea. If the above looks like gibberish then you should definitely study some access videos on youtube or go through some tutorials.

  3. #3
    mircea_s is offline Novice
    Windows 10 Access 2016
    Join Date
    Jan 2019
    Posts
    2
    Thank you, it's a good advice and starting point.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Update Price Based On % From Other Table
    By Auto in forum Queries
    Replies: 10
    Last Post: 07-07-2014, 01:35 PM
  2. Update Price based on multiple column
    By JustinC in forum Access
    Replies: 3
    Last Post: 03-31-2014, 08:37 AM
  3. Calculate Discounted Price
    By tia in forum Access
    Replies: 1
    Last Post: 11-20-2011, 12:37 AM
  4. Joining 2 Tables based on a Common Relation to Another
    By StudentTeacher in forum Programming
    Replies: 5
    Last Post: 07-26-2011, 07:23 AM
  5. Calculate Multiple Fields for Extended Price
    By SRessler in forum Queries
    Replies: 3
    Last Post: 11-01-2010, 03:57 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums