paul.raeburn
PR
- Local time
- Today, 18:47
- Joined
- Apr 29, 2001
- Messages
- 47
I am trying to delete records from a temp table using the following code.
CurrentDb().Execute "Delete * From tbl_temp_bank_statement Where [Original_Member_Number]= '" & Me![ListBoxGarther] & "'"
This does not work I get the following error.
Data type mismatch in criteria expression. (Error 3464)
Do I have to dim my "ListBoxGarther" value first.
Paul
CurrentDb().Execute "Delete * From tbl_temp_bank_statement Where [Original_Member_Number]= '" & Me![ListBoxGarther] & "'"
This does not work I get the following error.
Data type mismatch in criteria expression. (Error 3464)
Do I have to dim my "ListBoxGarther" value first.
Paul