+ Reply to Thread
Results 1 to 5 of 5

Textbox Info

  1. #1
    Forum Contributor
    Join Date
    08-28-2005
    Posts
    132

    Textbox Info

    I am using the following code to get info from a cell in my spreadsheet and add it to my userform textbox:

    Please Login or Register  to view this content.
    -Problem-
    I need to have the information from cells 'A12 & E12' inserted in the textbox and then separated by a comma(,).

    Can some one help me with the code for this.

    Thank you for your support.

  2. #2
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Smile

    Good evening oberon.black

    This line should do the trick.

    TextBox2.Value = Range("A12") & "," & Range("E12")

    HTH

    DominicB

  3. #3
    Forum Contributor
    Join Date
    08-28-2005
    Posts
    132
    Like a charm. But tell me why do I remove the .value?

  4. #4
    Dave Peterson
    Guest

    Re: Textbox Info

    You want to use:

    TextBox2.Value = Range("A12").Value & "," & Range("E12").Value

    ???

    I like to use that syntax, too. .Value is the default property a range object
    (so it's not always required).

    But I think it makes for better reading/coding to always use the property you
    want. You never have to worry about which property you meant.



    "oberon.black" wrote:
    >
    > Like a charm. But tell me why do I remove the .value?
    >
    > --
    > oberon.black
    > ------------------------------------------------------------------------
    > oberon.black's Profile: http://www.excelforum.com/member.php...o&userid=26732
    > View this thread: http://www.excelforum.com/showthread...hreadid=468380


    --

    Dave Peterson

  5. #5
    Forum Contributor
    Join Date
    08-28-2005
    Posts
    132
    Ok, Thanks

+ 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