Results 1 to 10 of 10
  1. #1
    Niko is offline Advanced Beginner
    Windows 7 64bit Access 2013 64bit
    Join Date
    Oct 2017
    Posts
    47

    A better way of designing and presenting data on form


    Hi guys, do you all have a better way on designing and presenting data on form?

    This is the current design of my form which require user to keep clicking next to see the next detail.
    Attached Thumbnails Attached Thumbnails form.jpg  

  2. #2
    davegri's Avatar
    davegri is online now Excess Access
    Windows 10 Access 2016
    Join Date
    May 2012
    Location
    Denver
    Posts
    3,413
    This is the current design of my form which require user to keep clicking next to see the next detail.
    Maybe I don't understand, but what other action could a user possibly take? You gotta tell Access to do something somehow.

  3. #3
    Niko is offline Advanced Beginner
    Windows 7 64bit Access 2013 64bit
    Join Date
    Oct 2017
    Posts
    47
    Quote Originally Posted by davegri View Post
    Maybe I don't understand, but what other action could a user possibly take? You gotta tell Access to do something somehow.
    In my current form, user will be able to calculate the weight for each data based on the content by clicking onto the four different button, user will be able to add the data into a new table by clicking ADD. Lastly, user will have to keep clicking next next next to select the data they want to add into the new table. Hence, I am asking if there is a better solution in designing this form so that user will not have to keep clicking next to select the data they want

    I hope I have explain clearly

  4. #4
    aytee111 is offline Competent At Times
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2011
    Location
    Nomad
    Posts
    3,936
    It all depends on your table structure. Usually with a form, there is one table denoted in the Record Source, there is a combobox select field which allows the user to display one particular record, there is an Add/New button which allows the user to add a new record. Access will handle all table updating with this scenario.

    The orange and yellow squares I am going assume are command buttons. These will then calculate certain values and display them somewhere? These fields will never be stored on a table.

  5. #5
    Niko is offline Advanced Beginner
    Windows 7 64bit Access 2013 64bit
    Join Date
    Oct 2017
    Posts
    47
    Quote Originally Posted by aytee111 View Post
    It all depends on your table structure. Usually with a form, there is one table denoted in the Record Source, there is a combobox select field which allows the user to display one particular record, there is an Add/New button which allows the user to add a new record. Access will handle all table updating with this scenario.

    The orange and yellow squares I am going assume are command buttons. These will then calculate certain values and display them somewhere? These fields will never be stored on a table.
    Everything that is display in the form will be added into my table and that include the calculated field. How can i use combo box to display a particular record? I am using SQL to retrieve data from another table(1) into my form and the save date will be save into another table (2)

  6. #6
    aytee111 is offline Competent At Times
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2011
    Location
    Nomad
    Posts
    3,936
    That doesn't sound like a normalized table structure. To find a record, the user will enter the key field, whatever that is. If it is the GLG PO, then make that a combobox, with a row source of all the PO numbers. Make sure it is an unbound field. The user will choose one from the list, then in the AfterUpdate event of that field:
    Me.Filter="PO field name=" & Me!combobox field name
    Me.FilterOn=True
    Me.Requery

  7. #7
    Niko is offline Advanced Beginner
    Windows 7 64bit Access 2013 64bit
    Join Date
    Oct 2017
    Posts
    47
    Click image for larger version. 

Name:	Untitled.png 
Views:	16 
Size:	10.1 KB 
ID:	30705
    Quote Originally Posted by aytee111 View Post
    That doesn't sound like a normalized table structure. To find a record, the user will enter the key field, whatever that is. If it is the GLG PO, then make that a combobox, with a row source of all the PO numbers. Make sure it is an unbound field. The user will choose one from the list, then in the AfterUpdate event of that field:
    Me.Filter="PO field name=" & Me!combobox field name
    Me.FilterOn=True
    Me.Requery
    If i do it in this way, the PO number will appear alot of time in the combo box as One PO number contain different color and fabric

  8. #8
    Micron is online now Virtually Inert Person
    Windows 7 32bit Access 2007
    Join Date
    Jun 2014
    Location
    Ontario, Canada
    Posts
    12,803
    If i do it in this way, the PO number will appear alot of time in the combo box as One PO number contain different color and fabric
    Without knowing what the rest of the records look like, it's hard to say for sure, but this statement makes me wonder if you should have a main form/subform setup. If you have to click 3, 5 or whatever number of times to see each record for the same PO, then you should be using a subform with a datasheet or continuous form view.
    The more we hear silence, the more we begin to think about our value in this universe.
    Paraphrase of Professor Brian Cox.

  9. #9
    Niko is offline Advanced Beginner
    Windows 7 64bit Access 2013 64bit
    Join Date
    Oct 2017
    Posts
    47
    Quote Originally Posted by Micron View Post
    Without knowing what the rest of the records look like, it's hard to say for sure, but this statement makes me wonder if you should have a main form/subform setup. If you have to click 3, 5 or whatever number of times to see each record for the same PO, then you should be using a subform with a datasheet or continuous form view.
    Hi, i have a subform below of main form

  10. #10
    Micron is online now Virtually Inert Person
    Windows 7 32bit Access 2007
    Join Date
    Jun 2014
    Location
    Ontario, Canada
    Posts
    12,803
    OK, I didn't see that part of the first image. At this point, I'm not sure what it is you need.
    How can i use combo box to display a particular record?
    If you're saying there are duplicates of PO number coming back because of different fabric, then either don't include other fields in the PO combo if that's what you're doing. If you are not but are still getting duplicates of PO, then try the DISTINCT predicate:
    SELECT DISTINCT tblPO.PO FROM tblPO... use your own table and field names of course.

    that include the calculated field.
    That's just a bad idea.

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

Similar Threads

  1. Replies: 3
    Last Post: 04-05-2017, 01:50 PM
  2. Need help Designing Form
    By exbaitman in forum Reports
    Replies: 2
    Last Post: 03-31-2015, 03:52 PM
  3. Form designing.
    By glen in forum Forms
    Replies: 29
    Last Post: 11-07-2012, 07:55 AM
  4. Replies: 3
    Last Post: 12-14-2011, 01:24 PM
  5. Designing Form
    By Kookai in forum Forms
    Replies: 0
    Last Post: 07-30-2010, 11:03 AM

Tags for this Thread

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