Results 1 to 3 of 3
  1. #1
    Dinger045 is offline Novice
    Windows 8 Access 2013 32bit
    Join Date
    Apr 2016
    Posts
    4

    Form Search

    I have this information, that is a data dump from a system that we have. I know how to create queries to pull out specific data from this specific set of information, but what I am looking for is a way to Set up a form, to be able to type in the OUTLET #, and have all relevant data be displayed in chronological order below.

    Like I want to type the outlet #, then have it show me the outlet information like, address city state zip.....but then also show me the other information like meter-totalizer-credit-loyalty etc....by the dates that it happened on.



    Attached you will find the data....is there a way for Access to do this, or is this not the route I am looking for? Any help would be greatly appreciated.Attachment 24394
    Attached Files Attached Files

  2. #2
    davegri's Avatar
    davegri is offline Excess Access
    Windows 10 Access 2016
    Join Date
    May 2012
    Location
    Denver
    Posts
    3,741
    Attachment 24398
    Maybe this is what you need...

  3. #3
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,550
    in a form bound to your data, in the form header, put a text box, say: txtFind
    also put a subform in the header to show the address of the outlet. Build this single record subform.

    Enter outlet# in the text box, then in the AFTERUPDATE event, filter the data
    Code:
    sub txtFind_afterupdate()
      if isnull(txtFind) then
          me.filterOn = false
     else
       me.filter = "[outlet#]=" & txtFind      'THIS ASSUMES ALL OUTLET#s ARE NUMERIC ONLY
       me.filterON = true
    end if
    end sub

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

Similar Threads

  1. Replies: 8
    Last Post: 09-02-2015, 03:00 PM
  2. Replies: 3
    Last Post: 09-02-2013, 04:33 PM
  3. Replies: 7
    Last Post: 08-08-2012, 03:28 PM
  4. Replies: 5
    Last Post: 07-13-2012, 01:15 AM
  5. Replies: 1
    Last Post: 04-20-2012, 03:16 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