+ Reply to Thread
Results 1 to 2 of 2

Contact list the will automatically add a contact

Hybrid View

mike.richards Contact list the will... 10-13-2008, 10:29 AM
xld Straight off the top ... 10-13-2008, 10:35 AM
  1. #1
    Registered User
    Join Date
    09-24-2008
    Location
    Las Vegas
    Posts
    12

    Contact list the will automatically add a contact

    i have a contact list that i would like my own userform to be filled out and then i want it to automatically find the bottom of the list and add the information from the userform and then sort all the contacts alphabetically. is this possible does anyone have any VBA code they are willing to share? thanks.

  2. #2
    Forum Contributor
    Join Date
    05-21-2004
    Location
    UK
    Posts
    136
    Straight off the top

    With Worksheets("Sheet1")
    
    With .Range("A2").End(xlDown).Offset(1,0)
    
    .Value = Textbox1.Text
    .Offset(0,10.Value = Textbox2.Text
    'etc
    End With
    
    .Columns("A:M").Sort Key1:=.Range("A1"), Order1:=xlAscending,Header:=xlYes
    End WIth

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 5
    Last Post: 08-26-2008, 01:07 PM
  2. Open-ended list validation
    By m.cain in forum Excel General
    Replies: 1
    Last Post: 02-11-2008, 08:25 PM
  3. Skipping blank cells in a list to create an uninterrupted list
    By bdance in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 10-02-2007, 06:26 PM
  4. macro to select next in data validation list
    By ryan00davis in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-23-2007, 09:34 PM
  5. Finding the max date in a subgroup of a long list
    By splashback in forum Excel General
    Replies: 2
    Last Post: 06-05-2007, 05:13 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1