Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
If I tipe a value (text) in N I want the values in the
same row in O P & A to be deleted. Please help |
#2
![]() |
|||
|
|||
![]()
Hi,
NOTE: Pls test it first and see if the result is what you want. Then apply to your data sheets. ' ========================= Private Sub Worksheet_Change(ByVal Target As Range) Dim row As Integer row = Target.row If Target.Column = 14 Then Cells(row, 1).Clear Cells(row, 15).Clear Cells(row, 16).Clear End If End Sub ' ========================= "Esrei" wrote: If I tipe a value (text) in N I want the values in the same row in O P & A to be deleted. Please help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to use SUMIF to return sums between two values located in cells | Excel Worksheet Functions | |||
Delete - Shift Cells UP problem | Excel Discussion (Misc queries) | |||
How do I get absolute values for a range of cells? | Excel Discussion (Misc queries) | |||
Macro to delete a text box and copy in new one | Excel Discussion (Misc queries) | |||
delete row contains specific word in an macro | Excel Discussion (Misc queries) |