Results 1 to 2 of 2
  1. #1
    seckerman is offline Novice
    Windows XP Access 2003
    Join Date
    Sep 2009
    Posts
    2

    Unhappy Access Query Question

    I have a table in Access 2003 that gets updated every new fiscal year with the next fiscal years rows. One of the fields is called Mgr and represents the manager responsible for specific parts. The part numbers (PSINO) is a key field. The 2009 records already have the manager data in place. What I need to do is copy the 2009 manager records and match them up to the part numbers in the 2010 records. How can this be accomplished?

  2. #2
    seckerman is offline Novice
    Windows XP Access 2003
    Join Date
    Sep 2009
    Posts
    2
    This is the query that I attempted to run...UPDATE (SELECT Mgr, PSINO, FiscalYear FROM PartForecast WHERE FiscalYear=2010) AS A INNER JOIN (SELECT Mgr, PSINO, FiscalYear FROM PartForecast WHERE FiscalYear=2009) AS B ON A.PSINO=B.PSINO SET A.Mgr = B.Mgr...but it gives me the following error...The Microsoft Jet database engine cannot find the input table or query <name>. Make sure it exists and that its name is spelled correctly. (Error 3078). The table name is correct. I also attempted this query with the same results...UPDATE [SELECT Mgr, PSINO, FiscalYear FROM PartForecast WHERE FiscalYear=2010;] AS A INNER JOIN [SELECT Mgr, PSINO, FiscalYear FROM PartForecast WHERE FiscalYear=2009;] AS B ON A.PSINO=B.PSINO SET A.Mgr = B.Mgr;...with no successs

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Mailing Query Question
    By bobbyfunk74 in forum Access
    Replies: 2
    Last Post: 03-01-2011, 12:15 PM
  2. Query with a question
    By sagit3 in forum Queries
    Replies: 0
    Last Post: 06-11-2009, 07:10 AM
  3. Query Question
    By blewis in forum Queries
    Replies: 0
    Last Post: 04-16-2009, 01:37 PM
  4. Query (Date Question)
    By cillajones in forum Queries
    Replies: 1
    Last Post: 08-09-2008, 12:05 PM
  5. update query question
    By blusk06 in forum Queries
    Replies: 3
    Last Post: 05-30-2008, 05:55 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums