G
Guest
I'm trying to send a field value from a query to a field in a table.
Private Sub NewCum_Click()
On Error GoTo Err_NewCum_Click
DoCmd.RunMacro ("mcr_cumroll") 'runs a query and doesn't close it
DoCmd.GoToRecord , , acNewRec
Me.BF_CUM_1 = [qry_cumrollforward]![ec_cum1].Value
this is not working, I get an error that says :
"You can't go to the specified record"
Is there another way that I could do this?
Private Sub NewCum_Click()
On Error GoTo Err_NewCum_Click
DoCmd.RunMacro ("mcr_cumroll") 'runs a query and doesn't close it
DoCmd.GoToRecord , , acNewRec
Me.BF_CUM_1 = [qry_cumrollforward]![ec_cum1].Value
this is not working, I get an error that says :
"You can't go to the specified record"
Is there another way that I could do this?