J
Jose Aleman
Hi,
I wanted to create a calculate button.
My fields
Field Name Data Type Length
Broker Number Double
Credit Number Double
Application Number Double
Refund Number Double
Refund should equal the total of Broker + Credit + Application.
This is what I have so far on the Command Button located on my form.
Dim intBroker As Integer
Dim intCredit As Integer
Dim intApplication As Integer
Dim intRefund As Integer
intRefund = intBroker + intCredit + intApplication
I don't know what to do after this. Can you please help?
I wanted to create a calculate button.
My fields
Field Name Data Type Length
Broker Number Double
Credit Number Double
Application Number Double
Refund Number Double
Refund should equal the total of Broker + Credit + Application.
This is what I have so far on the Command Button located on my form.
Dim intBroker As Integer
Dim intCredit As Integer
Dim intApplication As Integer
Dim intRefund As Integer
intRefund = intBroker + intCredit + intApplication
I don't know what to do after this. Can you please help?