I'm trying to create a button on my GUI that will access a table or query I have created elsewhere and change all of the values of one field to "off".
I use this application to create reports based on the options I select but need to reset them occasionally with out resetting the whole form to its original state.
The only code I have tried so far is;
and this hasn't worked, I'm showing you just so you can get a better idea of what I'm trying to accomplish.
Thanks
I use this application to create reports based on the options I select but need to reset them occasionally with out resetting the whole form to its original state.
The only code I have tried so far is;
Code:
For Each Value In Table.Table1.Selected
Set Value = Null
Next
Thanks
Comment