Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Entering 'mass' data in an Access Table 2

Status
Not open for further replies.

slmanning

Technical User
Mar 22, 2005
1
US
Does anyone know if it is possible to enter data in 'mass' in an Access Table? For example, I have a column that is a yes/no check box, can I select numerous records and check the box in all of them at once?
 
Are you familar with SQL? IF so, you can write an update statement - pending all the records you want to update have something in common.

For example, if you have a table called tblTest with the following columns:

numID number ,
txtName text ,
txtAddress text ,
txtCity text ,
txtState text ,
txtZipCode text

And you wanted to update all txtState to = NY

update tblTest
set txtState = "NY"

if you wanted all records where the state name = "NY" then
update tblTest
set txtCity = "test city"
where txtState = "NY"


hope this helps

 
Not exactly like you are thinking. But, you can use an update query.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top