S
sturner333
I am using the following line to write to a text box on a different form that
is open:
Forms![sheet2]![HVD] = Me!Text14
I would like to make this line more generic and use a information from the
current form to substitute for part of the line:
Dim tempDiv As String
tempDiv = Me!division
Forms![sheet2]![tempDiv] = Me!Text14
Is there a way to do this or a different set of commands to write to the
object on a different form.
Thanks for the help.
is open:
Forms![sheet2]![HVD] = Me!Text14
I would like to make this line more generic and use a information from the
current form to substitute for part of the line:
Dim tempDiv As String
tempDiv = Me!division
Forms![sheet2]![tempDiv] = Me!Text14
Is there a way to do this or a different set of commands to write to the
object on a different form.
Thanks for the help.