Trying to add second row data

B

BobbyS

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
 
O

Ofer

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
 
Top