Worksheet change issue

anichols

Board Regular
Joined
Mar 11, 2021
Messages
87
Office Version
  1. 365
Platform
  1. Windows
Hello all,

I have a worksheet change code that inputs the date when a cell in my range is edited and clears it when the range is cleared, however, I am looking to change it where only the value of "Y" inputs the date, and anything else would clear it. I'm sure I'm pretty close with some of my attempts, but any assistance would be greatly appreciated.

VBA Code:
Set WorkR = Intersect(Application.ActiveSheet.Range("I9:I100000"), Target)
xOffsetColumnR = 1
If Not WorkR Is Nothing Then
    Application.EnableEvents = False
    For Each Rng In WorkR
        If Not VBA.IsEmpty(Rng.Value) Then 'changes for all values
        'If (Rng.Value) = "Y" Then 'only deletes blanks
            ActiveSheet.Unprotect
            Rng.Offset(0, xOffsetColumnR).Value = Now
            Rng.Offset(0, xOffsetColumnR).NumberFormat = "mm/dd/yyyy"
            Target.Offset(1, 0).EntireRow.Hidden = False
            ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
                , AllowFormattingCells:=True, AllowFormattingRows:=True, _
                AllowInsertingRows:=True
        Else
            ActiveSheet.Unprotect
            Rng.Offset(0, xOffsetColumnR).ClearContents
            ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
                , AllowFormattingCells:=True, AllowFormattingRows:=True, _
                AllowInsertingRows:=True
        End If
    Next
    Application.EnableEvents = True
End If
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top