Results 1 to 22 of 22

Adding to some existing VBA code

Threaded View

  1. #1
    Forum Contributor
    Join Date
    11-26-2008
    Location
    Ohio
    MS-Off Ver
    2016
    Posts
    326

    Adding to some existing VBA code

    I have some working VBA code that lets me do two things.
    1) When I click in a cell (with a "q" in a cell, directly to the left of it) it puts an "X" in the cell.
    2) When I click in a cell (with a "/" in the cell, directly to the left of it) it puts a "wingding symbol" in the cell.
    These work perfectly. I would like to add one more component, the same "type/way" as above. (see next line)
    When I click on a cell (with a "z" in the cell, directly to the left of it) I want it to put in the letters "FE". (same way as above)

    Can someone modify, or add to my VBA code (shown below), so this will work??
    If you could send me back the full (modified code), that would be great.
    Thanks.


    Here's my VBA code;

     Private Sub Worksheet_SelectionChange(ByVal Target As Range)
     Const WS_RANGE As String = "a1:bu1450" '<=== change to suit
     If Target.Count > 1 Then Exit Sub
     If Not Target.Offset(, -1).Value Like "[q/]" Then Exit Sub
     Application.EnableEvents = False
     If Not Application.Intersect(Target, Range(WS_RANGE)) Is Nothing Then
     With Target
     If .Offset(, -1).Value = "q" Then
     .Font.Name = "x"
     .Value = IIf(.Value = "x", "", "x")
     ElseIf .Offset(, -1).Value = "/" Then
     .Font.Name = "Wingdings 2"
     .Value = IIf(.Value = "t", "", "t")
     End If
     .Offset(0, -1).Activate
     End With
     End If
     Application.EnableEvents = True
     End Sub
    Last edited by richard11153; 03-10-2014 at 03:32 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Existing VBA that needs loop adding to the code.
    By dave1983 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-06-2012, 10:54 AM
  2. Replies: 2
    Last Post: 03-17-2011, 08:55 PM
  3. Help adding to existing code
    By Jrykiss in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 12-02-2010, 06:11 PM
  4. Adding Code to an Existing UserForm with VBA
    By JimmyA in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-08-2010, 12:02 PM
  5. adding to an existing line of VBA code
    By Gazzr in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-08-2007, 08:37 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