+ Reply to Thread
Results 1 to 13 of 13

If anything in cell.. then put period in cell beside

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-30-2011
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2010
    Posts
    604

    Re: If anything in cell.. then put period in cell beside

    Beautiful... works like a charm

  2. #2
    Registered User
    Join Date
    03-09-2007
    Posts
    75

    Re: If anything in cell.. then put period in cell beside

    Dear Jerry,

    Would it be better if we use intersect so that when the data gets huge, this will only run macro on the specific cell updated.

    Option Explicit
    
    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim cell As Range
    
    On Error Resume Next
    If Not Intersect(Target, Range("D:D")) Is Nothing Then    
    
    Application.EnableEvents = False
        If Activecell <> "" Then
            Activecell.Offset(, 1) = "."
        Else
            Activecell.Offset(, 1) = ""
        End If
        Application.EnableEvents = True
    
    End If 
    
    
    End Sub
    Pls advice as I am also exploring.

    Cheers,
    CL

+ 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