Dim FieldName as String
FieldName = "[forms]![client]![name]"
&Fieldname = !last_name
In the example above I want to be able to get the contents of [forms]![client]![name] updated by the contents of !last_name. The compiler rejects this syntax. Perhaps there is a different character or index register or subscript method instead of the & character which is used to concatenate as well. Is there a way to use indirect addressing? I want to use a field list stored in a table to dynamically select the field that gets updated. Another words reference an address within an address.
FieldName = "[forms]![client]![name]"
&Fieldname = !last_name
In the example above I want to be able to get the contents of [forms]![client]![name] updated by the contents of !last_name. The compiler rejects this syntax. Perhaps there is a different character or index register or subscript method instead of the & character which is used to concatenate as well. Is there a way to use indirect addressing? I want to use a field list stored in a table to dynamically select the field that gets updated. Another words reference an address within an address.