C
Cravaus
On my billing form I have a text box control showing results called
TotalBilling. I also have a text box showing the invoice number that advances
incrementally by 1. The results of TotalBilling from the last invoice I want
to appear in the control containing the PreviousBallance field when I make a
new record for this client.
I have tried using AfterUpdate on the TotalBilling control:
Me.[PreviousBallance].DefaultValue = """" & Me.[TotalBilling] & """"
This does not work. What can I do that will work. I am thinking I need to
use DMax() and the invoice numbers. I am feeling lost with this. Some tips
would help.
Thanks
TotalBilling. I also have a text box showing the invoice number that advances
incrementally by 1. The results of TotalBilling from the last invoice I want
to appear in the control containing the PreviousBallance field when I make a
new record for this client.
I have tried using AfterUpdate on the TotalBilling control:
Me.[PreviousBallance].DefaultValue = """" & Me.[TotalBilling] & """"
This does not work. What can I do that will work. I am thinking I need to
use DMax() and the invoice numbers. I am feeling lost with this. Some tips
would help.
Thanks