Results 1 to 4 of 4
  1. #1
    chemthethriller is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2014
    Posts
    2

    Find and update multiple values

    So, I'm fairly new to MS Access and I'm trying to build an inventory db for my company. We also take equipment and setup small networks at other locations. I would like to create a form that I could enter multiple Serial numbers and check them out.


    For instance my Database at the moment is just Serial Number, Location, Technician, Checked in/out, and Timestamp (of last move).
    So I would like to enter in S/N 1, 2, 3, and 4 (up to maybe 60) click a check out box, add a new location, and new technician and have all those records in the DB update.
    At the moment the best I can figure out is a CTRL+F, find the SN and edit all the data manually which is very time consuming.

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,770
    Check in/out sounds like the MS Lending Library database template. MS also offers an inventory database template.

    For one method of searching for dynamic number of multiple values of the same field, review: http://www.allenbrowne.com/ser-50.html

    Could use a textbox to input comma separated string of S/N numbers for use with IN operator, but if user errors in typing, the filter will fail.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    chemthethriller is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2014
    Posts
    2
    Well user should never have typing errors due to us using barcode scanners for the input to MS. I'll read over the link you gave me, thank you!

    It's definitely a check in/out I looked through the MS templates available in Access and nothing really accomplished exactly what I was looking for.

  4. #4
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,770
    Seldom does any template do exactly what you want but can get ideas.

    The barcodes would still have to be separated by commas for the IN operator. The alternative is a series or OR expressions:

    [barcode] = 34534343 OR [barcode] = 97976589 OR etc

    or

    [SN] = 1 Or [SN] = 2 OR etc
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

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

Similar Threads

  1. DCOUNT Find Duplicate values
    By whojstall11 in forum Programming
    Replies: 4
    Last Post: 04-04-2014, 02:00 PM
  2. Replies: 5
    Last Post: 02-20-2013, 03:21 PM
  3. find out values between two dates column
    By learning_graccess in forum Queries
    Replies: 3
    Last Post: 04-20-2012, 04:17 AM
  4. Update Query selecting multiple values in one field
    By Zipster1967 in forum Queries
    Replies: 1
    Last Post: 08-15-2011, 12:22 PM
  5. Update query to summarize multiple values
    By ser01 in forum Queries
    Replies: 3
    Last Post: 05-15-2010, 09:38 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