I have an sql that runs....
UPDATE ProblemLog SET ProblemLog.Status = "Pending"
WHERE [Problem Number] IN (([Forms]![frmPendEm]![txtProbNo]));
Problem Number is autoGenerated primary key.
When I put in say...26, 27 it updates 0 records.
Put 26 or 27 by themselves and it updates 1 record at a time.
Anybody have any ideas of how this in statment can be accomplished to update multiple records?
Thanks.
________
Side Effects From Zoloft
UPDATE ProblemLog SET ProblemLog.Status = "Pending"
WHERE [Problem Number] IN (([Forms]![frmPendEm]![txtProbNo]));
Problem Number is autoGenerated primary key.
When I put in say...26, 27 it updates 0 records.
Put 26 or 27 by themselves and it updates 1 record at a time.
Anybody have any ideas of how this in statment can be accomplished to update multiple records?
Thanks.
________
Side Effects From Zoloft
Last edited: