Recent content by cjh7111

  1. C

    VBA Commands randomly unavailable in Access

    Hey all, Ive come across a problem while working on VBA in excel that pulls data in from an Access Database. It was working yesterday but for some reason im getting errors today. The VBA pastes data into the database and then runs some queries and then copies the query and pastes it back into...
  2. C

    Remove Duplicates SQL

    How would I go about it instead?
  3. C

    Remove Duplicates SQL

    Alright, so here is an abridged version of the SQL of the query. [Paste Table] is populated with data that users input (done via vba in excel) and then it pulls the BS%@W and BS%@C from the back tables. I need records that it doesnt find in the tables to stay blank so they know that it didnt...
  4. C

    Remove Duplicates SQL

    Hey all, I have a query that is returning a number of duplicates because of the way that it is set up. The duplicates are the same in every field except one (BS%). For the duplicates, BS % is blank in one and has a value in the other. I want to query the original query in order to remove the...
  5. C

    Query: Records Not Found

    Hi all, I'm new to Access so I'm a little lost. So I've created a query with the following SQL: SELECT Table1.[Material Key], Table1.[Material Name], Table1.[Info] FROM Table1 INNER JOIN search_MaterialKeys ON [Material Key] = search_MaterialKeys.[MaterialKeySearch]; So at the moment, users...
  6. C

    Multiple Input Parameters Question

    Thanks plog, that's helpful. I'm a little confused as to how to make a temp table. Ideally, a form would pop up that users could paste their list of mat numbers and it would populate the temp table and then run the query based on the numbers in the temp table. Is this possible?/ How would I...
  7. C

    Multiple Input Parameters Question

    Hi all, Alright so I'm new to Access and I'm a little lost. My end goal is to create a database where users can open up the front end and input "Material Numbers" and then will be provided with the related data for said material numbers. Currently, I have the query set up with the following...
Back
Top Bottom