Do you have a table that contains the users?
If so, you can use it to populate the software table.
INSERT INTO [Software table] ([USERID],[SoftwareNameField])
SELECT [UserID], "Microsoft Access 2007" as SWName
FROM [Table of Users]
In Query Design view
== Add your user table
== Put the UserID field in the list of fields
== Type the name of the software (or the id number) into a new field, for
instance:
"Microsoft Access 2007"
== Select Query: Append Query from the menu
== Select your table that you want to add records to
== In the Append to row select the field to insert the values into
John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
I have a software table and I need to add 300 of the same peace of software
in it BUT for each user. Is there a way to add the software once and then
populate for each user? Maybe a Query or something? Any thoughts would be
great.
Thanks