I made an Inventory Count application that has been working for the last five years.
Today, I am getting errors with an update query in VBA.
Here is the query definition:
StrSQL = " UPDATE Ticket "
StrSQL = StrSQL & " SET Ticket.[FirstCount] = [Forms]![ExistingTag]![FirstCount], "
StrSQL = StrSQL & " Ticket.[FirstCountEntered] = True "
StrSQL = StrSQL & " WHERE (((Ticket.Ticket)=[Forms]![ExistingTag]![Ticket])) "
I get the following error:
Operation must use an updatable query. (Error 3073).