Recent content by PotatoPancakes

  1. P

    insert to a table from another table with create a record in named data macro

    Here's what I would do. I don't think this is something a query would handle to copy/paste data. There is nothing currently connecting the checkpoint and projects table, so how would Access know which info to copy over. 1) Create the new table you want to insert the data with the proper fields...
  2. P

    insert to a table from another table with create a record in named data macro

    Is there a reason to copy? Why not just write the original data in the table you want to copy it into? Can you explain you table structure and process to me?
  3. P

    insert to a table from another table with create a record in named data macro

    is this a one time copy? If so, run the query and manually copy/paste the data. Ctrl+C, Ctrl+V
  4. P

    insert to a table from another table with create a record in named data macro

    Have the criteria you want to copy display on a form. Then, set a variable for each field displayed that you want to copy. Have the macro change the view to save the information to the other table. Set the fields on the pop-up to your variables. It's a similar problem I was having...
  5. P

    Create a Button to Duplicate Current Record

    Thank you JulianKirkness. I ended up figuring it out on my own using a Macro (not a datamacro). For anyone curious, I'll post my code below. All I did was use the ID to set a variable for each value I wanted to copy, created a new record, and set the individual fields to the variables I had set...
  6. P

    Create a Button to Duplicate Current Record

    Won't this only work for a desktop database? The web app can't run append queries.
  7. P

    Create a Button to Duplicate Current Record

    I am looking for a way to duplicate the current record (in List view) all but one field (well, technically two - can't duplicate the ID column). I have 25 fields that need to be populated for each entry and a lot of records are similar except for a field or two. How would I go about achieving...
  8. P

    Hey Guys

    hey guys, I've never worked in Access before but have been developing a web database for my company the past couple months. We launched it this week and things are going well so far!
Top Bottom