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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Qry on Linked Spreadsheet with Different Software Versions 1

Status
Not open for further replies.

BV874

Technical User
Nov 23, 2009
33
0
0
US
Hi,
I have an existing DB with linked Excel spreadsheets that I am modifying. I have users add information to the spreadsheet and run an update query to populate certain statuses. I get an error when I run the query: "Cannot update '(expression)';field not updateable".

The user who created this (no longer with the company) was running Office 2000 on XP SP3. I am running Office 2003 on XP SP2. However users running Office 2000 can run the query. Is there a way for me to update and run this without using the older software?

Thanks and have a good holiday!
 
instead of useing linked tables
create a query with this sql
Code:
SELECT [WhorkSheetName$].*
FROM [WhorkSheetName$] IN '' [Excel 5.0;HDR=yes;IMEX=0;DATABASE=FilePath\FileName;TABLE=WhorkSheetName$];
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top