Trying to add second row data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the following code...the first record is added in the table but not
the second..
What is wrong?

With rsNewData
.AddNew
![Comparison] = "User"
![ReturnVal] = strResponse
![Description] = "No"
.Update
.AddNew
![Comparison] = "PermPath"
End With
Thanks
 
You don't have .update in the end, after the add new

With rsNewData
.AddNew
![Comparison] = "User"
![ReturnVal] = strResponse
![Description] = "No"
.Update
.AddNew
![Comparison] = "PermPath"
.update
End With
 
Back
Top