+ Reply to Thread
Results 1 to 23 of 23

Help with Userform textbox value, vlookup, copy to clipboard

Hybrid View

etuckram Help with Userform textbox... 06-30-2012, 10:09 AM
etuckram Re: Help with Userform... 06-30-2012, 09:11 PM
Leith Ross Re: Help with Userform... 07-01-2012, 01:45 AM
etuckram Re: Help with Userform... 07-01-2012, 09:25 AM
etuckram Re: Help with Userform... 07-01-2012, 12:44 PM
Leith Ross Re: Help with Userform... 07-01-2012, 01:20 PM
etuckram Re: Help with Userform... 07-01-2012, 01:49 PM
Leith Ross Re: Help with Userform... 07-01-2012, 01:51 PM
etuckram Re: Help with Userform... 07-01-2012, 01:53 PM
Leith Ross Re: Help with Userform... 07-01-2012, 02:03 PM
etuckram Re: Help with Userform... 07-01-2012, 02:06 PM
etuckram Re: Help with Userform... 07-01-2012, 02:13 PM
Leith Ross Re: Help with Userform... 07-01-2012, 02:14 PM
etuckram Re: Help with Userform... 07-01-2012, 02:19 PM
etuckram Re: Help with Userform... 07-01-2012, 02:30 PM
etuckram Re: Help with Userform... 07-04-2012, 09:25 PM
Leith Ross Re: Help with Userform... 07-01-2012, 04:36 PM
etuckram Re: Help with Userform... 07-01-2012, 04:49 PM
Leith Ross Re: Help with Userform... 07-01-2012, 04:50 PM
etuckram Re: Help with Userform... 07-01-2012, 04:52 PM
Leith Ross Re: Help with Userform... 07-01-2012, 04:59 PM
etuckram Re: Help with Userform... 07-01-2012, 05:12 PM
etuckram Re: Help with Userform... 07-01-2012, 07:07 PM
  1. #1
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Help with Userform textbox value, vlookup, copy to clipboard

    Hello etuckram,

    Private Sub txtDomain_AfterUpdate()
    
        Dim i as Long
        Dim Text As String
    
            Text = txtDomain.Value
            If InStr(1, Text, ".")  > 0 Then txtDomain.Value = Right(Text, Len(Text) - i)
        
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  2. #2
    Registered User
    Join Date
    12-08-2010
    Location
    Philippines
    MS-Off Ver
    Office 365
    Posts
    76

    Re: Help with Userform textbox value, vlookup, copy to clipboard

    Quote Originally Posted by Leith Ross View Post
    Hello etuckram,

    Private Sub txtDomain_AfterUpdate()
    
        Dim i as Long
        Dim Text As String
    
            Text = txtDomain.Value
            If InStr(1, Text, ".")  > 0 Then txtDomain.Value = Right(Text, Len(Text) - i)
        
    End Sub
    I appreciate your help, but its not working, its giving me the same value

+ 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