D
DoveArrow
It's a little complicated to explain what I want my end result to be,
but right now, I have a tabular form with a field that I want to use
to update an unbound text box, I've named Ability. In doing some tests
to see if this would work, I tried writing a really basic sequence:
Select Case [Ability ID]
Case 1
Ability = 1
Case 2
Ability = 2
Case 3
Ability = 3
Case 4
Ability = 4
Case 5
Ability = 5
Case 6
Ability = 6
End Select
The problem is, when I run this Select...Case statement, it only pulls
the number from the first field. Example: if I have four rows, with
the numbers 1, 2, 3, and 4 in Ability ID respectively, it popluates my
four Ability text boxes with the numbers 1, 1, 1, and 1. Is there a
way to get it to refer specifically to the Ability ID field in each
row?
but right now, I have a tabular form with a field that I want to use
to update an unbound text box, I've named Ability. In doing some tests
to see if this would work, I tried writing a really basic sequence:
Select Case [Ability ID]
Case 1
Ability = 1
Case 2
Ability = 2
Case 3
Ability = 3
Case 4
Ability = 4
Case 5
Ability = 5
Case 6
Ability = 6
End Select
The problem is, when I run this Select...Case statement, it only pulls
the number from the first field. Example: if I have four rows, with
the numbers 1, 2, 3, and 4 in Ability ID respectively, it popluates my
four Ability text boxes with the numbers 1, 1, 1, and 1. Is there a
way to get it to refer specifically to the Ability ID field in each
row?