Results 1 to 2 of 2

run different code upon the number assigned in textbox

Threaded View

  1. #1
    Registered User
    Join Date
    10-07-2011
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    54

    run different code upon the number assigned in textbox

    Hi there,

    I would like to have a code that inputs the data from textbox1 (in userform) to a certain range upon a number in textbox2 (in userform).

    For example if I input "1" to textbox2, the data in textbox1 will be pasted in range AE3
    if 2 --> AD3
    if 3 --> AC3
    .
    .
    .
    if 30 --> B3


    
    Sub Button1_Click()
    Dim strText         As String
    Dim aryCharacters   As Variant
    Dim n               As Long
        
        strText = Replace(Me.TextBox1.Value, Chr(32), vbNullString)
        
        If Len(strText) > 1 Then
            If Len(strText) < ThisWorkbook.Worksheets(1).Columns.Count Then
                'Optional, clear the row first:
                Rows(3).ClearContents
        
                ReDim aryCharacters(1 To 1, 1 To Len(strText))
                For n = 1 To Len(strText)
                    aryCharacters(1, n) = Mid(strText, n, 1)
                Next
                Range("AE3").Resize(, UBound(aryCharacters, 2)).Value = aryCharacters
                Unload Me
            Else
                MsgBox "Too long...", 0, vbNullString
            End If
        Else
            MsgBox "You must have text in the textbox...", vbOKOnly, vbNullString
        End If
    End Sub

    Thanks,

    PS I want to do this otherwise I need to have 30 buttons to run each of them.
    Last edited by copythat; 12-06-2011 at 06:01 AM.

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