Help with code

D

Dan

Could anyone tell me how to fix my code?

I have 6 text boxes named amount1, amount2, amount3, ...,
amount6 and 6 more text boxes named payment1, payment2,
payment3, ... payment6. What I want to do is check if the
value in each of the amount text boxes is equal to 0 and
if they are then I want to add the total amount of the
corresponding payment text box to the text box named
[amount due]

Here is what I have so far:

Dim paymentNumSelected As String
For counter = 1 To 6
paymentNumSelected = "payment" & counter
If Me.[paymentNumSelected] = 0 Then
Me.[Amount Due] = Me.[Amount Due] + ["Amount"
& counter] + ["Late Fee" & counter] + counter
End If
Next

It keeps telling me that the field referenced cant be
found (Me.[paymentNumSelected]) but I checked and the
paymentNumSelected is equal to payment1, then payment2,
then payment3 and so on through the loop.
 
G

Graham R Seach

Dan,

Dim paymentNumSelected As String
Dim counter As Integer

For counter = 1 To 6
paymentNumSelected = "payment" & counter
If Me(paymentNumSelected) = 0 Then
Me("Amount Due") = Me("Amount Due") + _
Me(paymentNumSelected) + _
Me("Late Fee" & counter) + _
counter
End If
Next

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 

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

Similar Threads


Top