How to run macro when certain cell deleted?

radian89

Board Regular
Joined
Nov 12, 2015
Messages
113
Hi,

i'm stuck with the macro, to run when certain cell deleted.
here's the case, user will only fill the yellow area, then column F will have values too.

i want to when i press delete/backspace on C6, it'll delete F6 too. but it won't delete, if i only edit the content of C6. so certainly this is not Worksheet change event i guess.

2nutbfb.jpg


thanks for the helps

adrian
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Try this:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C6")) Is Nothing Then
If Target.Cells.Count > 1 Then Exit Sub
If Target.Value = "" Then Target.Offset(0, 3).Value = ""
End If
End Sub
 
Upvote 0
Just to be clear I believe you are deleting the contents in the cell not deleting the cell like you said.

Deleting a cell and deleting the contents of a cell are two different things.
 
Upvote 0
This will work for cell in column C, try:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim x as Long
x = cells(rows.count, 3).end(xlup).row
If Target.cells.count = 1 and not intersect(target, cells(1,3).resize(x)) is nothing and target.value = "" then Target.offset(,3).value = ""

End Sub
If it's a specific range, please state what it needs to be.
 
Last edited:
Upvote 0
If you want the script to work with all cell in column "C" try this:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target.Column = 3 And Target.Value = "" Then Target.Offset(0, 3).Value = ""
End Sub
 
Last edited:
Upvote 0
Hi,

sorry for late reply,

Try this:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C6")) Is Nothing Then
If Target.Cells.Count > 1 Then Exit Sub
If Target.Value = "" Then Target.Offset(0, 3).Value = ""
End If
End Sub

This will work for cell in column C, try:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim x as Long
x = cells(rows.count, 3).end(xlup).row
If Target.cells.count = 1 and not intersect(target, cells(1,3).resize(x)) is nothing and target.value = "" then Target.offset(,3).value = ""

End Sub
If it's a specific range, please state what it needs to be.

thanks for the idea... sorry, when i mean delete >> clearcontents, not delete the cells entirely.
and i've modified it to match my conditions, here's my code..

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim sh1 As Worksheet
Application.EnableEvents = False
Application.ScreenUpdating = False


    If Not Intersect(ActiveCell, Range("C5:C11")) Is Nothing Then


        If Target.value = vbNullString Then
            Set sh1 = Sheets("Hal Depan")
            
            With sh1
                .Range(.Cells(.Range("PasteRowKe").value, "F")).ClearContents
            End With
        
        End If
    End If
Application.EnableEvents = True
Application.ScreenUpdating = True


End Sub

range "Pasterowke", is a dynamic value, based on worksheet selection change, that display on which row, the current selected cells now on.
 
Upvote 0

Forum statistics

Threads
1,215,291
Messages
6,124,093
Members
449,142
Latest member
championbowler

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