maccten2000
Programmer
I have the following code
This code takes a column which is text and copies the information into a column which is set to Long Number Type within the same table
However i am getting the following error
"Operation Must Use an Updateable Query"
Can Anyone help me out
Cheers
Code:
' Set Variables
strSQL = "UPDATE " & strQueryDef & _
" SET " & StrColDest & " = (SELECT " & StrColSrc & " FROM " & strQueryDef & ");"
' Insert Records Into Table
DoCmd.RunSQL strSQL
This code takes a column which is text and copies the information into a column which is set to Long Number Type within the same table
However i am getting the following error
"Operation Must Use an Updateable Query"
Can Anyone help me out
Cheers