Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95

    Question NOTE on the screen if I enter the report number previously checked by someone else


    Click image for larger version. 

Name:	NOTE on the screen if I enter the report number previously checked by someone else.jpg 
Views:	25 
Size:	224.5 KB 
ID:	23677
    Hello everybody. Before I post a question, I would like to write that I am a beginner at MS Access and I have zero knowledge at VBA programming..

    While reading the text below please open a picture attached..

    To most of you this might sound like a nonsense but please tell me how can I make Access show me a note on the screen every time I input report number which has been previously input by someone else. When that someone checked that report he has found some mistakes on it and before sending the report to be corrected, he has put a short description about what wasn't OK.

    Now, after I input the same report number in the Form, I would like the Form to tell me in real time when that report was checked, by who, what was wrong etc...

    Thank you so much..

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,550
    in the REPORT # combo box, in the events properties, under AFTERUPDATE event put this:

    Code:
    sub cboBox1_afterupdate()
    
    me.Filter = cboBox1   (your combo box name)
    me.FilterOn=True
    then when you pick the # in the box, the form will show ONLY that #. (by filtering the data)
    To unfilter, unclick the FILTER button on the top toolbar to see all the records again.

  3. #3
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95
    Click image for larger version. 

Name:	Combo90 filtering problem.jpg 
Views:	23 
Size:	181.0 KB 
ID:	23684
    not working ((((

  4. #4
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95
    Click image for larger version. 

Name:	Combo90 filtering problem.jpg 
Views:	23 
Size:	181.0 KB 
ID:	23684
    not working

    I tried also:

    sub cboBox1_afterupdate()


    me.Filter = cboBox1 ([Combo90])
    me.FilterOn=True

  5. #5
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95
    Maybe I haven't been clear..

    After I enter a report number, I would like Access to show me in a separate text box, in real time, all previous inputs with that same report number.. Like in Windows Explorer, when in Search box of an indexed folder full of PDFs as I enter part of the name of a PDF I'm searching for, the list narrows and shows me all PDFs which in file name have criteria I have input..

    Click image for larger version. 

Name:	Showing doubles in real time as I input report number in a combo box.jpg 
Views:	18 
Size:	156.1 KB 
ID:	23698

  6. #6
    Bob Fitz's Avatar
    Bob Fitz is offline Access Developer
    Windows 7 32bit Access 2013
    Join Date
    May 2011
    Location
    Essex UK
    Posts
    3,614
    What will you want to do with the results, just view them or will you want to do something like perhaps go to one of the records
    If this helped, please click the star at the bottom left of this posting and add to my reputation . Many thanks.
    Bob Fitzpatrick

  7. #7
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95
    I would just like to view the results.. In my database I can have one report for instance 5 times.. 4 times the same report was bad (with mistakes) so now when I am checking it for the fifth time I would like to see on the screen who has checked it 4 times before me, what were the mistakes so that this time when I am having it in my hands I can check only if those mistakes (found in previous 4 checks) were corrected. It means I don't have to check again the whole report and waste a lot of time...
    Click image for larger version. 

Name:	Notes on the screen related to previous inputs of the same report.jpg 
Views:	18 
Size:	210.5 KB 
ID:	23699

  8. #8
    Bob Fitz's Avatar
    Bob Fitz is offline Access Developer
    Windows 7 32bit Access 2013
    Join Date
    May 2011
    Location
    Essex UK
    Posts
    3,614
    Can you post a copy of your db
    If this helped, please click the star at the bottom left of this posting and add to my reputation . Many thanks.
    Bob Fitzpatrick

  9. #9
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95
    how do I upload the database?

    (sorry for being dumb)

  10. #10
    Bob Fitz's Avatar
    Bob Fitz is offline Access Developer
    Windows 7 32bit Access 2013
    Join Date
    May 2011
    Location
    Essex UK
    Posts
    3,614
    To provide db: Make copy, remove confidential data, run compact & repair, zip w/Windows Compression if over 500KB (2MB zip allowed), attach to post. Attachment Manager is below the Advanced post editor window, click Go Advanced below the Quick Reply window.
    If this helped, please click the star at the bottom left of this posting and add to my reputation . Many thanks.
    Bob Fitzpatrick

  11. #11
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95

    Smile Database attached

    Database attached
    Attached Files Attached Files

  12. #12
    Bob Fitz's Avatar
    Bob Fitz is offline Access Developer
    Windows 7 32bit Access 2013
    Join Date
    May 2011
    Location
    Essex UK
    Posts
    3,614
    Take a look at the attached db
    If this helped, please click the star at the bottom left of this posting and add to my reputation . Many thanks.
    Bob Fitzpatrick

  13. #13
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95
    Hi Bob.. I have downloaded the Zip file, unzipped it, linked it with DATA storage table ("Table") and the form doesn't work.. When I enter on purpose the same report number, the form doesn't tell me anything.. No info about previous input of the same report.. Hm..

  14. #14
    Bob Fitz's Avatar
    Bob Fitz is offline Access Developer
    Windows 7 32bit Access 2013
    Join Date
    May 2011
    Location
    Essex UK
    Posts
    3,614
    what report number did you test with
    If this helped, please click the star at the bottom left of this posting and add to my reputation . Many thanks.
    Bob Fitzpatrick

  15. #15
    vazdajic is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2016
    Posts
    95
    I have tried with several reports which exist in the database.. When I enter the same report number (again) nothing happens.. I would like to see some kind of note on the screen if I enter the same report nr. again

Page 1 of 2 12 LastLast
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Count Checked boxes on report
    By BLFOSTER in forum Reports
    Replies: 2
    Last Post: 06-22-2015, 09:33 AM
  2. Print Checkbox on report only if checked
    By azhar2006 in forum Reports
    Replies: 5
    Last Post: 10-26-2014, 11:59 PM
  3. Replies: 2
    Last Post: 05-21-2014, 06:16 AM
  4. Replies: 6
    Last Post: 12-05-2013, 09:55 AM
  5. Replies: 10
    Last Post: 08-25-2012, 03:25 PM

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