G Guest Feb 17, 2006 #1 I have 37 records with a field yes/no and I need to set all these fields back to no. I need to have this done automatically. Please help
I have 37 records with a field yes/no and I need to set all these fields back to no. I need to have this done automatically. Please help
D Duane Hookom Feb 17, 2006 #2 This is about as automatic as it gets: DoCmd.SetWarnings False DoCmd.RunSQL "UPDATE tblNoNameGiven SET SomeFieldName = 0" DoCmd.SetWarnings True
This is about as automatic as it gets: DoCmd.SetWarnings False DoCmd.RunSQL "UPDATE tblNoNameGiven SET SomeFieldName = 0" DoCmd.SetWarnings True
B bob Feb 18, 2006 #3 I am not entirely sure what "automatically" means, but you could "automatically" run an update query from code or a macro......
I am not entirely sure what "automatically" means, but you could "automatically" run an update query from code or a macro......