Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
lstuckey
 
Posts: n/a
Default How do I have an active cell highlight automatically

I am working in excel and having trouble seeing the active cell. I would
like to have the active cell highlighted. Is this possible? It would make
it possible to find the active cell easier.
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.FormatConditions.Delete
With Target
.FormatConditions.Add Type:=xlExpression, Formula1:="TRUE"
With .FormatConditions(1)
With .Borders(xlTop)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = 5
End With
With .Borders(xlBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = 5
End With
End With
.FormatConditions(1).Interior.ColorIndex = 20
End With

End Sub


'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"lstuckey" wrote in message
...
I am working in excel and having trouble seeing the active cell. I would
like to have the active cell highlighted. Is this possible? It would

make
it possible to find the active cell easier.



  #3   Report Post  
BobT
 
Posts: n/a
Default

Try this site
http://office.microsoft.com/en-
us/assistance/HA011366231033.aspx

-----Original Message-----
I am working in excel and having trouble seeing the

active cell. I would
like to have the active cell highlighted. Is this

possible? It would make
it possible to find the active cell easier.
.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Highlight Active Cell...With a Diffrence Peter Excel Discussion (Misc queries) 1 January 31st 05 02:18 PM
Unable to set the active cell from VBA HMS New Users to Excel 1 December 7th 04 10:56 PM
Highlight Active Cell Db1712 Excel Discussion (Misc queries) 1 November 26th 04 02:14 PM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 08:16 PM
Load active cell data via a function Mike G - D.C. Excel Worksheet Functions 2 November 23rd 04 10:13 PM


All times are GMT +1. The time now is 08:15 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"