Ok let me see if I can explain all these right
ISSUE 1
when users choose a value for Combo25 I would like it to change 2 values on the form - got the first one working with the code below but what code do I add to change a second value? Can I just add another AfterUpdate Sub?
Private Sub Combo25_AfterUpdate()
Forms!Grat_Journal!Grat_Transaction.Form!T_Fee = Combo25.Column(4)
End Sub
ISSUE 2
when users add a value in number of copies produced for a client on this form I have it related to a query that contains client name and price of copies for that client
I would like it to take the value in number of copies for this client and multiply it by price of copies for this client and place the resulting total in total for copies field
make sense?
ISSUE 3
when a user changes the status of an order to "C" it calculates all items to form a grand total
I would like a field to keep a running total of all grand totals that are "C" in the header of the form - this is a form in multi-record view
to add an extra level of complexity some of the grand totals already have an amount in them when the item is "O" for open - I would like it to ignore these amounts
Thanking you in advance for any input
ISSUE 1
when users choose a value for Combo25 I would like it to change 2 values on the form - got the first one working with the code below but what code do I add to change a second value? Can I just add another AfterUpdate Sub?
Private Sub Combo25_AfterUpdate()
Forms!Grat_Journal!Grat_Transaction.Form!T_Fee = Combo25.Column(4)
End Sub
ISSUE 2
when users add a value in number of copies produced for a client on this form I have it related to a query that contains client name and price of copies for that client
I would like it to take the value in number of copies for this client and multiply it by price of copies for this client and place the resulting total in total for copies field
make sense?
ISSUE 3
when a user changes the status of an order to "C" it calculates all items to form a grand total
I would like a field to keep a running total of all grand totals that are "C" in the header of the form - this is a form in multi-record view
to add an extra level of complexity some of the grand totals already have an amount in them when the item is "O" for open - I would like it to ignore these amounts
Thanking you in advance for any input