With the above code used. Opening the form results with:
Run-Time Error '13':
Type Mismatch
taking out the second variable and using the same variable for both results with:
Run-Time Error '13':
Type Mismatch
adding the [] around the Explorers Query part also returns the Run-Time Mismatch error.
when you press debug on all three ways it highlights
Code:
Me.Controls("name" & i).Caption = DLookup("[Full Name]", "Explorers Query", "ID=" & i)
Code:
Me.Controls("name" & i).Caption = DLookup("[Full Name]", "[Explorers Query]", "ID=" & i)