I have two tables. I have to copy one to the other using individual field names. I do not know the field names
This is what I have done
Dim dFieldName As Field
For Each dFieldName In dbs.TableDefs!tblOracleARFeedBackErrorsRpt.Fields
rst3!dFieldName.Name = rst!dbfieldname.Name <===problem is here
Next dFieldName
rst3.Update
How do I update each field? dbfieldname contains a valid field name. How do I refer to the field contained in dfieldname.name?
Thanks
This is what I have done
Dim dFieldName As Field
For Each dFieldName In dbs.TableDefs!tblOracleARFeedBackErrorsRpt.Fields
rst3!dFieldName.Name = rst!dbfieldname.Name <===problem is here
Next dFieldName
rst3.Update
How do I update each field? dbfieldname contains a valid field name. How do I refer to the field contained in dfieldname.name?
Thanks