Logical Field ?

M

Mike J

In VBA I am trying to set a YES/NO fiel to Yes or true.

rstMyTable!Field = True doesn't work.

How do I set it to true?

Mike
 
V

Van T. Dinh

I assume "Field" means the Field Name of the Field you want to set the value
for the current Record of the Recordset.

* Have you checked and make sure the Recordset is updateable?

* Do you have rstMyTable.Update after the posted statement?
 
Top