G
Guest
I have a group of unbound fields (Named Field1, Field2, Field3 etc.) that
must have a unique number (integer) place in them. Is there a way to check
if a number has been duplicated in the fields and in what field it was found.
I am loading the array as follows.
Option Base 1
Dim i As Integer
Dim MyArray(18)
Dim TheField As String
For i = 1 To 18
TheField = "Field" & i
MyArray(i) = Me(TheField).Value
Next i
Your help is greatly appreciated.
Thanks,
Barry
must have a unique number (integer) place in them. Is there a way to check
if a number has been duplicated in the fields and in what field it was found.
I am loading the array as follows.
Option Base 1
Dim i As Integer
Dim MyArray(18)
Dim TheField As String
For i = 1 To 18
TheField = "Field" & i
MyArray(i) = Me(TheField).Value
Next i
Your help is greatly appreciated.
Thanks,
Barry