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!

Update Query

Status
Not open for further replies.

SHAWTY721

Programmer
Aug 16, 2007
116
US
I have an excel spreadsheet that contains many records and I was wondering is there a way to do an Update Query in excel like can be done in Access to update a couple values from a column.
 




Yes. Check out...

INSERT INTO table
(column-1, column-2, ... column-n)
VALUES
(value-1, value-2, ... value-n)

UPDATE table
SET column = expression
WHERE predicates

using MS Query or ADO, which will take VBA.

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top