Home |
Search |
Today's Posts |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
nice !
"Jacob Skaria" wrote: Try the below.. Select the sheet tab which you want to work with. Right click the sheet tab and click on 'View Code'. This will launch VBE. Paste the below code to the right blank portion. Get back to to workbook and try out. Dim varData As Variant Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 3 Then If varData < "" And varData < Target.Value Then Target.Offset(, 2).ClearContents End If End If End Sub Private Sub Worksheet_SelectionChange(ByVal Target As Range) varData = Target.Value End Sub -- Jacob (MVP - Excel) "Dan Wood" wrote: I do have another question though. Is there a way to automatically clear the colum 'E' if something in colom 'C' is changed? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Congratulations, Jacob Skaria... | Excel Discussion (Misc queries) | |||
Previously helped by Jacob Skaria -- need more help | Excel Discussion (Misc queries) | |||
Ping Jacob Skaria | Excel Worksheet Functions | |||
How do I get macro to unmerge cells that have been previously merg | New Users to Excel | |||
Can I set-up a macro to undo a previously run macro? | Excel Discussion (Misc queries) |