record sale with several sales persons

  • Thread starter Thread starter learning
  • Start date Start date
L

learning

What would the proper way be to enter a sale, then be able to enter 1 or
more sales persons, their "costs" to the sale, and their commission on the
sale?
 
Hi

tblSales
SaleId (or whatever the PK is)

tblEmp
EmpId (or whatever the PK is for the file the sales people are on)
CommRate | if standard /default across sales.
CostRate |

tblSaleEmp
SaleId
EmpId
CommRate | if overriding / or there is no standards
CostRate |

So for each sale you have as many records on tblSaleEmp as required for the
number of sales people involved in the sale.

There are many more variations depending on the complexity of your
commission structure.

HTH
Marc
 

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

Back
Top