A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Active Cell Color



 
 
Thread Tools Display Modes
  #1  
Old August 27th, 2008, 12:29 PM posted to microsoft.public.excel.worksheet.functions
Taurien
external usenet poster
 
Posts: 9
Default Active Cell Color

Hi!

Any function by which we can have active cell as colored or defferent from
other cells as usually we have to look at the row and column on top as its
highlighted. So any function by which a cell is colored.

Regards
  #2  
Old August 27th, 2008, 01:14 PM posted to microsoft.public.excel.worksheet.functions
Duke Carey
external usenet poster
 
Posts: 1,027
Default Active Cell Color

Chip Pearson has a utility on his site that does what you want.
www.cpearson.com

Unfortunately, his site appears to be down at this moment. If you check it
in a little while it might be back on line

"Taurien" wrote:

Hi!

Any function by which we can have active cell as colored or defferent from
other cells as usually we have to look at the row and column on top as its
highlighted. So any function by which a cell is colored.

Regards

  #3  
Old August 27th, 2008, 02:16 PM posted to microsoft.public.excel.worksheet.functions
Taurien
external usenet poster
 
Posts: 9
Default Active Cell Color

i checked that site but still its not working, is there any other way around .
Thanks

"Duke Carey" wrote:

Chip Pearson has a utility on his site that does what you want.
www.cpearson.com

Unfortunately, his site appears to be down at this moment. If you check it
in a little while it might be back on line

"Taurien" wrote:

Hi!

Any function by which we can have active cell as colored or defferent from
other cells as usually we have to look at the row and column on top as its
highlighted. So any function by which a cell is colored.

Regards

  #4  
Old August 27th, 2008, 06:05 PM posted to microsoft.public.excel.worksheet.functions
Duke Carey
external usenet poster
 
Posts: 1,027
Default Active Cell Color

It's up and running now

http://www.cpearson.com/Excel/RowLiner.htm


"Taurien" wrote:

i checked that site but still its not working, is there any other way around .
Thanks

"Duke Carey" wrote:

Chip Pearson has a utility on his site that does what you want.
www.cpearson.com

Unfortunately, his site appears to be down at this moment. If you check it
in a little while it might be back on line

"Taurien" wrote:

Hi!

Any function by which we can have active cell as colored or defferent from
other cells as usually we have to look at the row and column on top as its
highlighted. So any function by which a cell is colored.

Regards

  #5  
Old August 27th, 2008, 10:18 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default Active Cell Color

Chip's rowliner is probably your best bet but it won't work on protected
worksheets.

This sheet event code is similar and can work on a protected sheet.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static OldCell As Range
If Application.CutCopyMode = 0 Then
ActiveSheet.Unprotect Password:="justme"
If Not OldCell Is Nothing Then
OldCell.Interior.ColorIndex = xlColorIndexNone
OldCell.Borders.LineStyle = xlLineStyleNone
End If
Set OldCell = Target
OldCell.Interior.ColorIndex = 6
OldCell.Borders.LineStyle = xlContinuous
Else
If OldCell Is Nothing Then
Set OldCell = Target
Else
Set OldCell = Union(OldCell, Target)
End If
End If
ActiveSheet.Protect Password:="justme"
End Sub

Will color the activecell yellow.

Note: will wipe out existing background color of activecell cell unless BG
color is due to CF


Gord Dibben MS Excel MVP



On Wed, 27 Aug 2008 04:29:00 -0700, Taurien
wrote:

Hi!

Any function by which we can have active cell as colored or defferent from
other cells as usually we have to look at the row and column on top as its
highlighted. So any function by which a cell is colored.

Regards


  #6  
Old August 28th, 2008, 07:53 AM posted to microsoft.public.excel.worksheet.functions
Taurien
external usenet poster
 
Posts: 9
Default Active Cell Color

great man it worked and its fun alongwith .. thanks

"Duke Carey" wrote:

It's up and running now

http://www.cpearson.com/Excel/RowLiner.htm


"Taurien" wrote:

i checked that site but still its not working, is there any other way around .
Thanks

"Duke Carey" wrote:

Chip Pearson has a utility on his site that does what you want.
www.cpearson.com

Unfortunately, his site appears to be down at this moment. If you check it
in a little while it might be back on line

"Taurien" wrote:

Hi!

Any function by which we can have active cell as colored or defferent from
other cells as usually we have to look at the row and column on top as its
highlighted. So any function by which a cell is colored.

Regards

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:29 PM.


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