D DS May 15, 2005 #1 Is there a way to click on a command button and set the value for all records in a particular set to another value? Thanks DS
Is there a way to click on a command button and set the value for all records in a particular set to another value? Thanks DS
R Rick Brandt May 15, 2005 #2 DS said: Is there a way to click on a command button and set the value for all records in a particular set to another value? Thanks DS Click to expand... CurrentDB.EXECUTE "UPDATE TabelName SET FieldName = NewValue", dbFailOnError
DS said: Is there a way to click on a command button and set the value for all records in a particular set to another value? Thanks DS Click to expand... CurrentDB.EXECUTE "UPDATE TabelName SET FieldName = NewValue", dbFailOnError
D DS May 15, 2005 #3 Rick said: CurrentDB.EXECUTE "UPDATE TabelName SET FieldName = NewValue", dbFailOnError Click to expand... Thanks DS
Rick said: CurrentDB.EXECUTE "UPDATE TabelName SET FieldName = NewValue", dbFailOnError Click to expand... Thanks DS