View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
rmd rmd is offline
external usenet poster
 
Posts: 2
Default Cell pointer position

Don, thanks for the response. Unfortunately, I'm not a programmer and not
that familiar with writing VBA code (althouh I have written some). Is there
a way to do what I want without writing code? And just to clarify, an
example of what I need done is when the cell pointer is placed in certain
cells I want those cells to be highlighted.

Thanks.

"Don Guillett" wrote:

You can use a macro within a worksheet event in the sheet module
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"rmd" wrote in message
...
I want to use conditional formatting to highlight certain cells based on
the
position of the cell pointer. Is this posible?


.