+ Reply to Thread
Results 1 to 2 of 2

auto insert text

Hybrid View

  1. #1
    Registered User
    Join Date
    04-28-2008
    Posts
    48

    auto insert text

    How do I format cells so that when I enter the first letter of a word, it automatically enters that word. For example, if I want "yes" or "no" in the cell, once I type "y" it will come up "yes"; and once I type "n" it will come up "no".

    Thanks.

    John G.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    You could take a look at Tools > autocorrect options for a non VBA way otherwise it would be an event macro

    Example code below. Right click sheet tab > select view code > paste in the below. Change A1:A100 to your range

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
        Select Case UCase(Target)
            Case "Y": Target.Value = "Yes"
            Case "N": Target.Value = "No"
        End Select
    End If
            
    End Sub

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 12
    Last Post: 10-03-2008, 09:02 AM
  2. insert text if criteria met
    By freshstart in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 08-22-2008, 10:37 AM
  3. Auto insert row based on data
    By Sharp in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-07-2008, 02:49 PM
  4. Macro to copy text certain # of times and insert new row each time
    By markdill in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-07-2007, 01:30 PM
  5. Auto insert Text into empty row
    By cindy7 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-06-2007, 03:48 PM

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