Hi,
I'm still working on a single project (and have been for the past year?) which is starting to annoy me greatly.
Basically;
I have a recordset setup to update the data in a table after an append query copies the record accross to an archive, but setting the recordset to update the right record isnt working.
I keep getting a run-time 3070;
The Jet Database doesnt recognise 'CMP' as a valid field name or expression.
My Code;
BookingRefB is a string consisting of "CMP-BCAxxxx" where the x's represent digits in sequential order.
Can anyone help me with this?
Cheers,
-Adzi
I'm still working on a single project (and have been for the past year?) which is starting to annoy me greatly.
Basically;
I have a recordset setup to update the data in a table after an append query copies the record accross to an archive, but setting the recordset to update the right record isnt working.
I keep getting a run-time 3070;
The Jet Database doesnt recognise 'CMP' as a valid field name or expression.
My Code;
Code:
Set EditBooking = CurrentDb.OpenRecordset("tblCampingBookings", dbOpenDynaset)
EditBooking.FindFirst "[Booking Reference]=" & BookingRefB & ""
BookingRefB is a string consisting of "CMP-BCAxxxx" where the x's represent digits in sequential order.
Can anyone help me with this?
Cheers,
-Adzi