+ Reply to Thread
Results 1 to 6 of 6

Insert a name to a table via a macro

Hybrid View

  1. #1
    Registered User
    Join Date
    04-24-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    17

    Insert a name to a table via a macro

    I want to create a macro which will pop up a little window where i can insert a first name and last name, and make those names appear into tables i have created on excel.
    How can i do that?

  2. #2
    Registered User
    Join Date
    04-25-2012
    Location
    portsmouth,england
    MS-Off Ver
    Excel 2007
    Posts
    21

    Re: Insert a name to a table via a macro

    You could create a userform, and add two textboxes with the code:

    Private Sub TextBox1_Change()
    Range("a1").Value = TextBox1.Text
    End Sub
    
    Private Sub TextBox2_Change()
    Range("a2").Value = TextBox1.Text
    End Sub
    Hope that helps

  3. #3
    Registered User
    Join Date
    04-24-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    17

    Re: Insert a name to a table via a macro

    Quote Originally Posted by uduyt View Post
    You could create a userform, and add two textboxes with the code:

    Private Sub TextBox1_Change()
    Range("a1").Value = TextBox1.Text
    End Sub
    
    Private Sub TextBox2_Change()
    Range("a2").Value = TextBox1.Text
    End Sub
    Hope that helps
    Hey, where do i create a userform from?

  4. #4
    Registered User
    Join Date
    04-25-2012
    Location
    portsmouth,england
    MS-Off Ver
    Excel 2007
    Posts
    21

    Re: Insert a name to a table via a macro

    from Excel, press Alt-f11 and then when microsoft visual basic opens up, go insert>userform

  5. #5
    Registered User
    Join Date
    04-24-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    17

    Re: Insert a name to a table via a macro

    Quote Originally Posted by uduyt View Post
    from Excel, press Alt-f11 and then when microsoft visual basic opens up, go insert>userform
    After i do that what do i do? Sorry im a beginner with excel. It comes up with an empty box?
    Last edited by h.maleki; 04-25-2012 at 06:54 PM.

  6. #6
    Registered User
    Join Date
    04-25-2012
    Location
    portsmouth,england
    MS-Off Ver
    Excel 2007
    Posts
    21

    Re: Insert a name to a table via a macro

    with the toolbox, make two textboxs(just click on the button with "ab" on it and draw it under where it says userform1) after you've made the two textboxes, double click any of them and a new window should come up with:

    Private Sub TextBox1_Change()
    
    End Sub
    Delete that and paste the code I showed you before
    Then double-click userform1 under forms to the left, and press f5.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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