+ Reply to Thread
Results 1 to 3 of 3

get a cells value to equal a textbox value when a button is pressed

  1. #1
    Registered User
    Join Date
    12-08-2012
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    37

    get a cells value to equal a textbox value when a button is pressed

    Hi I am after a way to update the value of a cell (M4) in a worksheet (worksheet1) to the value of a textbox (textbox9) in a userform (userform 1) when a command button (commandbutton1) is pressed. The command button is located in the user form.

    This userform is used to prefill lots of data on multiple worksheets so this is only a part of the code but once I can figure out this part I will be right.

    I have tried to use the following code with no sucsess
    Please Login or Register  to view this content.
    however i can get this to work in reverse ie update the textbox with the cells value
    Please Login or Register  to view this content.
    Another way I have thought of doing this is just to have the cells updated as you type using the ControlSource. However I cant figure out the format needed to enter it straight in the properties window, and when I try using code
    Please Login or Register  to view this content.
    nothing seems to update in the cells.

    I have looked in the forum for similar questions and answers but nothing is seeming to work. Any help would be greatly appreciated.
    Last edited by grantastley; 12-17-2012 at 11:17 PM.

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: get a cells value to equal a textbox value when a button is pressed

    Quote Originally Posted by grantastley;3050609

    I have tried to use the following code with no sucsess

    [CODE
    Please Login or Register to view this content.[/CODE]
    Is the 7 a typo?


    These should all work
    Sheet1.Range("M4").Value = TextBox9.Value

    "Sheet1" is the tab name of the worksheet
    Sheets("Sheet1").Range("M4").Value = TextBox9.Value

    The 1 in this case is the number of the sheet from the left or the first sheet from the left
    Sheets(1).Range("M4").Value = TextBox9.Value

  3. #3
    Registered User
    Join Date
    12-08-2012
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    37

    Re: get a cells value to equal a textbox value when a button is pressed

    Hi Yes the 7 was a typo.
    Please Login or Register  to view this content.
    Works great.
    I thought I had tried this combo before but I must not have. I like the sheetx.range method as the worksheets have variable text names so using the code name it is always going to work.
    Thank you and much appresiate your time.
    Cheers

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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