Results 1 to 9 of 9
  1. #1
    LovellDC is offline Novice
    Windows 7 64bit Access 2013 32bit
    Join Date
    Feb 2017
    Posts
    12

    Question How do you move fields in a datasheet form? - Access 2013


    I have just created a database for the first time and created a form by using Create, More Forms, Datasheet and want to change the fields. Although I can move the fields in datasheet view and save it when I close the form and reopen the fields have moved back to where they were. I do have combo lists in the fields not sure if this should make any difference?

    The reason I have created a datasheet form is because the users will have to copy and paste data from an exel spreadsheet so thought the datasheet form (although doesn't look very professional) would be the quickest way of pasting columns of data in one go into the form, I am happy to accept any better suggestions as well as the answer to my question.

    By the way I only have one table (imported from Excel). I tried the wizard to create tables hoping to add relationships but ended up with about 13 and didn't know how to edit them! This one table at the moment answers my queries.

    Can any one help please?

    Thanks

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,524
    In form design ,move the field to the order you want, save.

  3. #3
    LovellDC is offline Novice
    Windows 7 64bit Access 2013 32bit
    Join Date
    Feb 2017
    Posts
    12
    Thank you this works fine but I want to move the fields in the datasheet view as this is where the users will copy and paste data from a spreadsheet, as this would be quicker than form view.

    Can you still help?

  4. #4
    orange's Avatar
    orange is online now Moderator
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,722

  5. #5
    NTC is offline VIP
    Windows 10 Access 2013
    Join Date
    Nov 2009
    Posts
    2,392
    256's post gives how to arrange fields as the designer - but datasheet feature allows users to drag them and rearrange just like excel - so not sure what it is you seek.

  6. #6
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,524
    The form can be set to data sheet.

  7. #7
    LovellDC is offline Novice
    Windows 7 64bit Access 2013 32bit
    Join Date
    Feb 2017
    Posts
    12
    Thanks everyone

  8. #8
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    When you create a Datasheet View Form, using the Form Wizard, Access arranges the Columns as the appear in the underlying Table. Going into Form Design View and re-arranging them doesn't work...they remain in the order that they are in the Table.

    But you can, in VBA, change the order of display, using this kind of thing:

    Code:
    Private Sub Form_Load()
     Me.EmployeeID.ColumnOrder = 1
     Me.EmployeeName.ColumnOrder = 2
    End Sub


    Linq ;0)>
    The problem with making anything foolproof...is that fools are so darn ingenious!

    All posts/responses based on Access 2003/2007

  9. #9
    CJ_London is online now VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,412
    column order is originally defined by the form recordset

    SELECT * - the order per the table

    SELECT Fld3, fld2, fld9, fld1 - the order as listed in the select statement

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

Similar Threads

  1. Replies: 2
    Last Post: 10-09-2015, 02:42 PM
  2. Replies: 7
    Last Post: 12-04-2014, 12:47 PM
  3. Datasheet Form Filter By Multiple Fields
    By snoopy2003 in forum Programming
    Replies: 4
    Last Post: 03-14-2012, 03:22 PM
  4. Move Form Fields Up or Down
    By Jo22 in forum Forms
    Replies: 8
    Last Post: 02-16-2012, 12:12 PM
  5. Cant move fields around on a form
    By byterbit in forum Forms
    Replies: 3
    Last Post: 02-20-2011, 06:41 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