View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default worksheet cells fill with color after typing

Possibly ToolsOptionsEdit "Extend data range formulas and formats"

Uncheck that.

Or, to follow the event code idea.........right-click on the Excel Icon left of
"File" and select "View Code

Anything there like.............................

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
some code here
End Sub



Gord Dibben MS Excel MVP

On Fri, 1 Feb 2008 08:13:05 -0800, Betsy
wrote:

This isn't the case. Thanks for the suggestion, though.

"Gary''s Student" wrote:

Perhaps an Event Macro. Right-click the tab name at the bottom of the excel
window and select View Code.
--
Gary''s Student - gsnu200767


"Betsy" wrote:

I have a worksheet and I am only supposed to type data in un-filled (white)
cells. Other cells that are filled with light blue color are to be left
blank.

When I type in some of the un-filled cells and advance to the next cell for
typing, the first one I typed in turns light blue! There is no conditional
formatting in the cell.

What could be causing some of these cells to fill with light blue color
after typing in them???