Is this possible? If so, will such a scenario work with multiple users
working in the form at the same time?
Thanks for the assist!
-Adam
For more background, we have two groups working on one project. The first
group inputs data in to the .xls and the second group will input additional
information via the .mdb.
However, both groups need the ability to view what the other group has done
in their respective interfaces. Also, we need to have the ability for both
groups to input data at the same time...
I just found this post, and am a bit discouraged:
http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?&query=update+excel+using+access+form&lang=en&cr=US&guid=&sloc=en-us&dg=microsoft.public.access&p=1&tid=14f1b8ee-66cb-4d03-9f33-203d5ec486d9&mid=064e1dba-cb5f-4076-bf07-357656cd11bb
Thoughts?
-Adam
"AdamZ" <Ad...@discussions.microsoft.com> wrote in message
news:C26E00CE-9C98-4A2A...@microsoft.com...
some guy out of brazil or argentina had a patent on this; and I swear
to god that this functionality is now disabled
-Aaron
The OP can also use Jet SQL e.g.
UPDATE [Excel 8.0;DATABASE=C:\Tempo\db.xls;HDR=YES;].[Employees$]
SET EmployeeName = 'Jamie'
WHERE EmployeeID = 1;
Cannot read/write if the workbook is password-protected; cannot write
if the worksheet is protected. Cannot update cells that contain
formulas. Updates to a formula cell's precedents will not be reflected
in the formula's value until the worksheet is recalculated using the
Excel app. Data typing may be an issue - see
http://www.dicks-blog.com/archives/2004/06/03/external-data-mixed-data-types/.
Jamie.
--