Recent content by BLUDEV

  1. B

    ACCESS 2010 Update Query Not Working

    I tried updating my VBA code as follows and still no luck: Function UpdateIssuesDatabase() Dim dbs As Database Dim qdf As QueryDef ' Path to database to update Set dbs = OpenDatabase("\\MACSERV8\Company\Customer Service\Issues FE File\090314\Issues.accdb") '...
  2. B

    ACCESS 2010 Update Query Not Working

    Thanks MarkK; I haven't changed the original query nor changed to destination table. I reviewed some other sites and decided to just do a temp table to contain the data that will be used to update the table in the other database. It's a work-a-round for now until I can figure out why it can't...
  3. B

    Appending records

    I became so frustrated that instead of doing an "append" VBA code, I went ahead and did an append query which works just had to make a unique value table to only have the 1 record with the three items which needed to be added to the other databases table. Thanks everyone.
  4. B

    ACCESS 2010 Update Query Not Working

    Hi MarkK, this is different; for the IN clause in the other, I'm coming into a glitch still but will update my other post with that. For this, it was working and just stopped. I went into the query design to do a basic update so can you advise a solution to avoid the sometimes working...
  5. B

    Appending records

    @ jdraw, still working on it but almost there. Will post the completed code I've finished testing. Thank you again.
  6. B

    Appending records

    "Thank you for the tools mention, I will download these"
  7. B

    ACCESS 2010 Update Query Not Working

    Trying to perform a basic update query; tables reside in two different databases. Has been working for weeks and today, it doesn't work. As of today, I get a "Enter parameter value" which does not make since to me. :banghead::banghead::banghead: See below I've attached screen shots. Is there an...
  8. B

    Appending records

    I am still running into a brick wall, I'm not an expert and need help as I keep getting a "Compile error" Syntax error for the following: Function UpdateIssuesDatabase() Dim con As Object Set con = CreateObject("ADODB.Connection") On Error GoTo UpdateIssuesDatabase_OpenError con.Open _...
  9. B

    Appending records

    Thanks MarkK, "IN" totally slipped my mind. I will update my module and provide the outcome.
  10. B

    Macro help! Running a module

    I want to thank June7 for all the help and putting up with my questions
  11. B

    Appending records

    Hello, I am yet again in need of assistance. The goal I am trying to accomplish using VBA within Access 2010 is to append/add certain records to another database (Customer Service) from my database (Client Request). I tried using a macro to append then update records in my database but...
  12. B

    Macro help! Running a module

    Update: I tried to go another way and entered a "GoHyperlink" module to open Excel from Access (running 2010) and it opens Excel but now I have hit another wall. :banghead::banghead::banghead:..the "DataLink Properties" window appears and stops my Excel from opening and halts at the first macro...
  13. B

    Macro help! Running a module

    I need help, :banghead: my brain has melted and I hope someone can assist. I am trying to run the following code as a function in Access 2010: Public Function OpenAMZOrder() Dim xl As Object 'Step 1: Start Excel, then open the target workbook. Set xl = CreateObject("Excel.Application")...
  14. B

    Help - DoCmd for emailing table

    Help, I have a table that has various information for my functional participants; in this table, each persons email is stored. Is there a way for me to send this taqble using the DoCMD or Send Object method that will "automatically" send to the email addresses listed in the table? I'm sure...
  15. B

    Password Override Help

    Thank you, this worked great
Back
Top Bottom