Here's a method that avoids the concatenation and the problems that it causes
Const SQL = "Insert into tblAssignments ([Caller], [HowMany],[TimeStamp]) VALUES (p0,p1,p2);"
With CurrentDb.CreateQueryDef("", SQL)
.Parameters(0) = Me.CboCaller
.Parameters(1) = Me.CboHowMany...