+ Reply to Thread
Results 1 to 3 of 3

Copy Textbox Contents

Hybrid View

  1. #1
    Registered User
    Join Date
    01-17-2006
    Posts
    21

    Copy Textbox Contents

    Hi,
    In Excel, I wish to copy the contents of a textbox into a single cell.
    How do I achieve this? The problem is the code to select the contents of the textbox.

    The aim is to allow a user to type comments, which are then saved into a cell for later retrieval and the textbox is emptied so the next user can add comments.

    Thanks, Simon

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Simon

    How about


    ActiveSheet.Shapes("Text Box 1").Select
      strr = Selection.Characters.Text
      Selection.Characters.Text = ""
      Range("A1").Select
      Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Value = strr

    rylo

  3. #3
    Registered User
    Join Date
    01-17-2006
    Posts
    21
    That is exactly what I needed.

    Thanks Rylo

+ 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