+ Reply to Thread
Results 1 to 13 of 13

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

Hybrid View

  1. #1
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

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

    Place this macro in the SHEET MODULE so it is active all the time. It will watch for activity in column D. If any cell in column D is changed, it place a period in column E. If the change CLEARS a cell in column D, the column E period would be removed, too.

    Option Explicit
    
    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim cell As Range
    
    On Error Resume Next
    For Each cell In Intersect(Target, Range("D:D"))
        Application.EnableEvents = False
        If cell <> "" Then
            cell.Offset(, 1) = "."
        Else
            cell.Offset(, 1) = ""
        End If
        Application.EnableEvents = True
    Next cell
    
    End Sub
    Last edited by JBeaucaire; 02-16-2011 at 12:19 PM.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  2. #2
    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

    Jerry,

    It seems to give me a run-time error anytime I enter info in columns other than D. Any way around this?

    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