Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Transferring data entered into a Text box to another Cell/Sheet?

Is it possible to record a macro that allows you transfer the data that
is entered into a text box to another cell/sheet?



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Transferring data entered into a Text box to another Cell/Sheet?

You can't really record a macro that does this.

Private Sub Textbox1_Change()
Worksheets("Sheet1").Range("A1").Value = textbox1.Text
End sub

This uses the change event for the textbox. There may be better events to
use depending on what you want to do. Change is common to both a textbox on
the worksheet and in a userform. This assumes and MSforms.TextBox

--
regards,
Tom Ogilvy


Alan T wrote in message
...
Is it possible to record a macro that allows you transfer the data that
is entered into a text box to another cell/sheet?



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Transferring Data from one sheet to another Fkerr Excel Discussion (Misc queries) 2 August 18th 08 11:24 AM
Transferring a cell value to another sheet John[_11_] Setting up and Configuration of Excel 1 November 13th 07 04:34 PM
Transferring data from one sheet to another if criteria are met. Bruce Hancock[_2_] Excel Worksheet Functions 6 September 6th 07 09:18 PM
Can a cell be linked to read data entered into a text box ? theltgguy Excel Discussion (Misc queries) 0 May 11th 06 09:24 PM
Can a cell be linked to read data entered into a text box ? theltgguy Excel Discussion (Misc queries) 0 May 11th 06 09:15 PM


All times are GMT +1. The time now is 02:32 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"