Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Yes,
Sub test() Dim cell As Range For Each cell In Selection If cell.Interior.ColorIndex = 6 Then cell.ClearContents End If Next cell End Sub 6 is bright yellow 36 is light yellow or using Range Names... Sub test() Dim cell As Range For Each cell In Range("TEST") If cell.Interior.ColorIndex = 6 Then cell.ClearContents End If Next cell End Sub HTH, Gary Brown "Paul H" wrote: Can a macro be written that would clear the contents from all yellow cells? "Jim Thomlinson" wrote: Nope. The Macro is what it is... You need to change the macro to dynamically determine what it needs to do, not clear the contenst of a "Hard Coded" cell. I would need to see the code and get a few more details to help you... "Paul H" wrote: I have created a simple macro that when used will clear out the contents of a certain cells. If I insert an additional row the macro does not adjust and the macro needs to be edited. Is there a way to have the macro adjust automatically when a row is insurted? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
how to count/sum by function/macro to get the number of record to do copy/paste in macro | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |