G Guest Nov 23, 2004 #1 How do I change the color of the currently active cell and have it change each time a new cell is selected? Bruce
How do I change the color of the currently active cell and have it change each time a new cell is selected? Bruce
N Norman Jones Nov 23, 2004 #2 Hi Bruce, See Chip Pearson's highlight active cell page at: http://www.cpearson.com/excel/excelM.htm#HighlightActiveCell
Hi Bruce, See Chip Pearson's highlight active cell page at: http://www.cpearson.com/excel/excelM.htm#HighlightActiveCell
J JohnDing Nov 23, 2004 #3 in subroutine "Workbook_SheetSelectionChange", place following code: ActiveCell.Interior.ColorIndex = 40 ActiveWorkbook.Colors(40) = RGB(192, 192, 192) Use different RGB value to get colors you favorate...
in subroutine "Workbook_SheetSelectionChange", place following code: ActiveCell.Interior.ColorIndex = 40 ActiveWorkbook.Colors(40) = RGB(192, 192, 192) Use different RGB value to get colors you favorate...