Page 3 of 3 FirstFirst 123
Results 31 to 35 of 35
  1. #31
    mikesal57 is offline Advanced Beginner
    Windows 10 Access 2016
    Join Date
    Mar 2021
    Posts
    48


    Quote Originally Posted by isladogs View Post
    Thank you for doing that
    your welcome.....looking to getting many questions answered here

    mike

  2. #32
    Micron is offline Virtually Inert Person
    Windows 10 Access 2016
    Join Date
    Jun 2014
    Location
    Ontario, Canada
    Posts
    12,791
    I hear you and I'm sorry....

    I started by Googleing Access Forums .....these 2 came up.......not knowing which one would satisfy me....I did post in both....
    But after all the responses , I set my tack here...

    Mike
    Don't know if you care, but that's enough for me to take you off of my ignore list. I saw a lack of concern when you were called out for cross posting, plus there was a comment at UA about that being the 'better' place (IIRC). Moke123 is quite right - but sometimes the help effort goes over several days even though this is a non-paying gig. Common courtesy can get you a lot of free help; I have worked on large issues for days when the OP has some to spare.

    So maybe the approach is to continue researching db normalization - as long as you have a good understanding of the business that the db is supposed to support. If you don't have that, you have no chance, same as if one of us who knows the concept has no understanding of the business. Try these,

    Normalization Parts I, II, III, IV, and V
    http://rogersaccessblog.blogspot.com...on-part-i.html
    and/or
    http://holowczak.com/database-normalization/

    Entity-Relationship Diagramming: Part I, II, III and IV
    http://rogersaccessblog.blogspot.com...ng-part-i.html

    and/or keep looking until you find something that makes that light go on. You might then need to write a treatise on the business and what you propose as the table schema as a new post and get feedback. I suggest you read these also when you have conquered normalization. These will help you avoid a LOT of the common pitfalls:

    How do I Create an Application in Microsoft Access?
    http://rogersaccessblog.blogspot.com...cation-in.html

    Naming conventions - http://access.mvps.org/access/general/gen0012.htm
    https://www.access-programmers.co.uk...d.php?t=225837

    What not to use in names
    - http://allenbrowne.com/AppIssueBadWord.html

    About Auto Numbers
    - http://www.utteraccess.com/wiki/Autonumbers
    - http://access.mvps.org/access/general/gen0025.htm

    The evils of lookup fields - http://access.mvps.org/access/lookupfields.htm
    Table and PK design tips - http://www.fmsinc.com/free/newtips/primarykey.asp
    About calculated table fields - http://allenbrowne.com/casu-14.html
    About Multi Value Fields - http://www.mendipdatasystems.co.uk/m...lds/4594468763
    The more we hear silence, the more we begin to think about our value in this universe.
    Paraphrase of Professor Brian Cox.

  3. #33
    mikesal57 is offline Advanced Beginner
    Windows 10 Access 2016
    Join Date
    Mar 2021
    Posts
    48
    Quote Originally Posted by Micron View Post
    Don't know if you care, but that's enough for me to take you off of my ignore list. I saw a lack of concern when you were called out for cross posting, plus there was a comment at UA about that being the 'better' place (IIRC). Moke123 is quite right - but sometimes the help effort goes over several days even though this is a non-paying gig. Common courtesy can get you a lot of free help; I have worked on large issues for days when the OP has some to spare.

    So maybe the approach is to continue researching db normalization - as long as you have a good understanding of the business that the db is supposed to support. If you don't have that, you have no chance, same as if one of us who knows the concept has no understanding of the business. Try these,

    Normalization Parts I, II, III, IV, and V
    http://rogersaccessblog.blogspot.com...on-part-i.html
    and/or
    http://holowczak.com/database-normalization/

    Entity-Relationship Diagramming: Part I, II, III and IV
    http://rogersaccessblog.blogspot.com...ng-part-i.html

    and/or keep looking until you find something that makes that light go on. You might then need to write a treatise on the business and what you propose as the table schema as a new post and get feedback. I suggest you read these also when you have conquered normalization. These will help you avoid a LOT of the common pitfalls:

    How do I Create an Application in Microsoft Access?
    http://rogersaccessblog.blogspot.com...cation-in.html

    Naming conventions - http://access.mvps.org/access/general/gen0012.htm
    https://www.access-programmers.co.uk...d.php?t=225837

    What not to use in names
    - http://allenbrowne.com/AppIssueBadWord.html

    About Auto Numbers
    - http://www.utteraccess.com/wiki/Autonumbers
    - http://access.mvps.org/access/general/gen0025.htm

    The evils of lookup fields - http://access.mvps.org/access/lookupfields.htm
    Table and PK design tips - http://www.fmsinc.com/free/newtips/primarykey.asp
    About calculated table fields - http://allenbrowne.com/casu-14.html
    About Multi Value Fields - http://www.mendipdatasystems.co.uk/m...lds/4594468763
    WOW...that should keep me busy a long time
    and out of peoples hair...

    thxs

  4. #34
    moke123's Avatar
    moke123 is offline Me.Dirty=True
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2012
    Location
    Ma.
    Posts
    1,651
    I wont pretend to understand your data or what you're trying to do but I can give a psuedo example of normalization when it comes to repeating fields.
    You have 37 fields such as nPos1, nPos2, nPos3, etc. Looking at your sample data the majority of these fields appear empty.

    If you used another table, related by a field call it BetID. You could then have a tall, thin table with a structure like:

    nPosID (PrimaryKey) BetID (Foreign Key) nPos nPosValue
    1 1 1 1
    2 1 4 1
    3 1 9 1

    No null fields. All the same information is there.

    You'd probably be able to write simple functions to return the data you want rather than complicated queries.
    If this helped, please click the star * at the bottom left and add to my reputation- Thanks

  5. #35
    mikesal57 is offline Advanced Beginner
    Windows 10 Access 2016
    Join Date
    Mar 2021
    Posts
    48
    Quote Originally Posted by moke123 View Post
    I wont pretend to understand your data or what you're trying to do but I can give a psuedo example of normalization when it comes to repeating fields.
    You have 37 fields such as nPos1, nPos2, nPos3, etc. Looking at your sample data the majority of these fields appear empty.

    If you used another table, related by a field call it BetID. You could then have a tall, thin table with a structure like:

    nPosID (PrimaryKey) BetID (Foreign Key) nPos nPosValue
    1 1 1 1
    2 1 4 1
    3 1 9 1

    No null fields. All the same information is there.

    You'd probably be able to write simple functions to return the data you want rather than complicated queries.
    looks promising....thxs...I'll look into that
    mike

Page 3 of 3 FirstFirst 123
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 01-09-2019, 02:41 PM
  2. Replacing one value for another
    By Richiebob in forum Programming
    Replies: 10
    Last Post: 05-06-2013, 11:33 AM
  3. Replacing data in a field.
    By darrellx in forum Queries
    Replies: 4
    Last Post: 08-21-2011, 10:33 AM
  4. Compiling Data, Not Replacing
    By helpaccess in forum Access
    Replies: 12
    Last Post: 03-08-2011, 03:13 PM
  5. Replacing data in Table
    By JackT in forum Import/Export Data
    Replies: 1
    Last Post: 08-23-2010, 10:34 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