+ Reply to Thread
Results 1 to 4 of 4

How to input data from multiple textbox to worksheet

Hybrid View

munandar How to input data from... 06-01-2016, 01:51 AM
LeoTaxi Re: How to input data from... 06-01-2016, 04:03 AM
munandar Re: How to input data from... 06-01-2016, 09:41 PM
LeoTaxi Re: How to input data from... 06-02-2016, 04:41 AM
  1. #1
    Registered User
    Join Date
    08-26-2015
    Location
    Indonesia
    MS-Off Ver
    2007
    Posts
    6

    How to input data from multiple textbox to worksheet

    Hii all
    ihave problem with my form. I have 18 textbox. Textbox 1 labeled as ID. And txtbox (2 to 18) as input data. I want store my data at Sheet1. If i input ID "1" then data input on TxtBox (2 to 18) will be automatic can be run in sheet1 row 5 (my tabel has header at 4). if i input ID 2, then all data will be in row 6. If i have alot of textbox, It imposible for me to take event one by one for all my Txtbox to store data in sheet1.

    Any Suggestion/Idea. Please (my wrksheet as attach)
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    08-16-2015
    Location
    Antwerpen, Belgium
    MS-Off Ver
    2007-2016
    Posts
    2,380

    Re: How to input data from multiple textbox to worksheet

    Private Sub CommandButton4_Click()
    Sheets("sheet1").Range("A" & Val(TextBox1) + 4).Resize(1, 18).Value = Array(TextBox1, TextBox2, TextBox3, _
        TextBox4, TextBox5, TextBox6, TextBox7, TextBox8, TextBox9, TextBox10, TextBox11, TextBox12, TextBox13, _
        TextBox14, TextBox15, TextBox16, TextBox17, TextBox18)
    End Sub
    
    Private Sub UserForm_Initialize()
    TextBox1 = Sheets("sheet1").Range("A" & Rows.Count).End(xlUp).Row - 3
    TextBox2.SetFocus
    End Sub

    Kind regards
    Leo
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    08-26-2015
    Location
    Indonesia
    MS-Off Ver
    2007
    Posts
    6

    Re: How to input data from multiple textbox to worksheet

    Dear Leo

    Thanks Leo. It's work. I have question.
    What about another control? i mean, it possible if we use Event such as Exit Event or KeyDown Event? Because i ll make sure the data when i put on each text box as soon as is in our range (ex. input data on each text box > 0 an < 25). so when i click command button, all of data is clearly accepted.

  4. #4
    Forum Expert
    Join Date
    08-16-2015
    Location
    Antwerpen, Belgium
    MS-Off Ver
    2007-2016
    Posts
    2,380

    Re: How to input data from multiple textbox to worksheet

    This is a control for each textbox before writing to sheet


    Private Sub CommandButton4_Click()
    For x = 2 To 18
        If Me("textbox" & x).Value < 0 Or Me("textbox" & x).Value > 25 Then
            MsgBox "Enter data >0 and <25 in textbox " & x
            Me("textbox" & x) = ""
            Me("textbox" & x).SetFocus
            Exit Sub
        End If
    Next
    Sheets("sheet1").Range("A" & Val(TextBox1) + 4).Resize(1, 18).Value = Array(TextBox1, TextBox2, TextBox3, _
        TextBox4, TextBox5, TextBox6, TextBox7, TextBox8, TextBox9, TextBox10, TextBox11, TextBox12, TextBox13, _
        TextBox14, TextBox15, TextBox16, TextBox17, TextBox18)
    unload me
    End Sub

    Kind regards
    Leo

+ 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. [SOLVED] Userform textbox multiline input into worksheet individual cells
    By jprlimey in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 05-09-2018, 09:33 AM
  2. Filter multiple worksheets based on data input in a master worksheet.
    By tina16marie in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-18-2016, 04:46 PM
  3. Replies: 4
    Last Post: 01-29-2014, 05:53 AM
  4. Excel : Input and Retrieve Data using Textbox
    By rajaman in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-13-2013, 07:21 AM
  5. Macro to copy textbox data to a duplicate textbox in another worksheet
    By nitram lowm in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-02-2013, 06:10 AM
  6. Multiple TextBox Input From Runtime Records On Userform
    By bazza88 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-13-2010, 04:48 AM
  7. Userform Textbox to input data to worksheet
    By wrobs in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-23-2010, 01:02 AM

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