A family of Microsoft relational database management systems designed for ease of use.
Hi Ken, An interesting point. I'll have to check it when I get home.
In this case, the query was referencing a text box on a form to default the records being added. The data being entered was a month name, a text string. That's why it baffled me at first. The field type being written to was also Text. My first clue was the message when I ran the query that x values were not updated due to a type violation. The second clue was that the month name was right justified when I viewed the query. So I changed the expression to: Mth: CStr(Forms!formname!controlname) and everything worked as I envisioned. Are you saying that if I define the Mth column as Text in the Parameters statement I wouldn't have had that problem?