Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Who's up for a chalenge

Status
Not open for further replies.

Monzer

Programmer
May 24, 2002
26
0
0
CA
I have a feild "Amount" in my Customer tbl;
Now in the customer EditForm i have a buttom called BackCom for commisions; the buttom opens up another form with the "BackCom" feild for input and the value inserted in this feild will be calculated as folow: ((value*10%)+"Amount")
I was thinking about using modules but could somebody tel me if there is an easier way .
 
What is "Amount"? Where does this calculated value go?

lonniejohnson@prodev.us
ProDev, MS Access Applications B-) ,
May God bless you beyond your imagination.
 
Private Sub BackCom_Click()

CurrentDb.Execute "INSERT INTO YourTable ([BackCom]) Values ((value*10%)+"Amount")


End sud

Hope that helps
 
"Amount" is the commision that i get payed on in my main table.
Every week i get stats for my clients concerning their payments,a client is alowed for weekly payments instead one full payment; now,i get 10% comission each time a payment is made rgardless...
Example: CustomerA payed 100$ in week1 ; "Amount"=10$
then CustomerA payed 100$ in week2 ; "Amount"=10$+10$
=20$

The feild "Amount" is increminting all the time
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top