Results 1 to 4 of 4
  1. #1
    dkatorza is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Aug 2011
    Posts
    8

    Access 2010 - table with same fileds and rows

    Hello evryone,


    need your kind help with the below,

    i'm using Access 2010 and i created a main form , from which i want to let users to open new table with fixed fileds and rows, also the name of the table will be as per user choice.

    so if a user want to open new table from the main menu, he will have the choice to press on a command button and a dialoge box will ask to name the table.
    the new table will then be open with the same fileds and rows names( name only) .
    the new table will be edited using a form.



    hope i'm clear.

    many thanks.

  2. #2
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    You're not clear and I'm not sure you're using the correct verbiage.

    Are you saying you want to give your users the ability to create a TABLE on the fly? and they can do their own data entry on that same table? This is an incredibly bad idea and poor programming primarily because you do NOT want to give your users access to change the table design/structure. Not to mention it becomes impossible to maintain relationships and ensure proper normalization of tables

    a TABLE just stores data, nothing else, no calculated values, nothing
    a FORM is user interface
    a QUERY is a subset of data you find in your TABLE(S)

  3. #3
    dkatorza is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Aug 2011
    Posts
    8
    Dear rpeare,
    sorry , English is not my mother tongue language.

    i have a main form,
    from this main form i want to let users to update prices/rates.

    but also to let the the option to add companies update the rates for them.

    we are working with sevral companies that givs us rates and sometimes we need to add companies.

    all this details must go to diferent tables no?

    if i have 6 companies and each one have diferent rates than i need table for each one.

    the filds names will always be the same and rows names.

  4. #4
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    You would need a table for your customers that contained a primary key (autonumber will work) for instance:

    Code:
    tblCustomers
    CustID CustomerName ----> other fields related to customers
    1      Company A
    2      Company B
    I do not know the structure of your pricing/rates but I'm guessing you have different rates for different items so you would likely want a 'item' table that also had an autonumber primary key and then a 'customer item charge' table that would contain the CustID, the ItemID and have it's own autonumber field as it's primary key with a field for the cost for that item for that customer.

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

Similar Threads

  1. Replies: 17
    Last Post: 08-03-2011, 05:19 PM
  2. How to two same fileds on the same form
    By plavookins in forum Forms
    Replies: 1
    Last Post: 04-11-2011, 03:17 AM
  3. Linked table manager in Access 2010
    By Delta223 in forum Access
    Replies: 3
    Last Post: 01-07-2011, 12:37 PM
  4. Corrupt Table in Data Set View Access 2010
    By Peter Murray in forum Access
    Replies: 1
    Last Post: 11-29-2010, 04:16 PM
  5. On format, fileds that can be used
    By markjkubicki in forum Reports
    Replies: 1
    Last Post: 10-22-2010, 10:56 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