D
Dart QIS
Hi guys,
I am in the process of updating 3,500 rows of data. My two
fields are UserID (the second field) and a field called
DataEntry (the 50th field). The user of the database has
hired another person to do the data entry for this field
so all of the fields are going to be UserID = DataEntry. I
have set up my module based on the Help files, but I have
no idea how I am going to transfer my data.
here is what I have so far in a module. I am a beginner at
Access 97 VBA:
Function UpdateTable()
Dim dbs As Database, rst As Recordset
Set dbs = CurrentDb
Set rst = dbs.OpenRecordset("ProdTestingCopy")
MsgBox "There is " & rst.RecordCount & " records in this
table."
Set dbs = Nothing
Set rst = Nothing
End Function
I am in the process of updating 3,500 rows of data. My two
fields are UserID (the second field) and a field called
DataEntry (the 50th field). The user of the database has
hired another person to do the data entry for this field
so all of the fields are going to be UserID = DataEntry. I
have set up my module based on the Help files, but I have
no idea how I am going to transfer my data.
here is what I have so far in a module. I am a beginner at
Access 97 VBA:
Function UpdateTable()
Dim dbs As Database, rst As Recordset
Set dbs = CurrentDb
Set rst = dbs.OpenRecordset("ProdTestingCopy")
MsgBox "There is " & rst.RecordCount & " records in this
table."
Set dbs = Nothing
Set rst = Nothing
End Function