Similar Threads:
1.Highlighting the active cell during "Find"
When I search (Find) for a term, how can I highlight the active cell that it
finds. Ccurrently, it only outlines the cell, kinda hard to spot. I just
need this for the Find" function, not during data entry.
2.Format / Highlight the Active Cell
I have found some good solutions to my problem, but not one that fits
the bill exactly.
I'm looking to format the active cell with a yellow background, but I
need to ensure that the cell's format previous to it being active
remains as it was after the cell is no longer active. All the solutions
I have seen remove the background after the cell is no longer active.
So, if I have a cell with a black background (for instance) and I make
it the active cell the cell will have a yellow background. After I
leave that cell, I need it to return to it's previous state - black
background, not none.
I have tried this code...
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object,
ByVal Target As Excel.Range)
Static OldRange As Range
On Error Resume Next
Target.Interior.ColorIndex = 6 ' yellow - change as needed
OldRange.Interior.ColorIndex = xlColorIndexNone
Set OldRange = Target
End Sub
...and I think the answer may lie here "OldRange.Interior.ColorIndex =
xlColorIndexNone"
Any help would be greatly appreciated. Thank you in advance!
-M
3.Conditional Format to Highlight the Active Cell
I have created a protected sheet with a few pre-populated, unlocked data
entry cells. Is there a way to create a Conditional Format to "highlight" the
activecell that the user is on? I cannot use VB since the sheet will be used
on secured systems and the macro will be blocked.
4.Highlighting an active cell
I have a workbook of floorplans with desk no's and pc no's. I have created
bookmark links to another worksheet within this workbook that contains user
name tel no and pc details, There are over 300 names in this sheet. Is it
possible to highlight say in yellow the cell that becomes active when I enter
it from my link.
Your help here would be very much appreciated.
5.Highlight active cell and de-highlight previous cell
I want to highlight the current cell with a color say gray and set the color
of the last cell I was at back to what it currently was. The code below does
not work. It sets the previous cell color to white and if the cell color was
something other than white, say green, I lose the color green for the
previous cell.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error Resume Next
Static OldRange As Range
'Set backcolor to whatever, change as needed
Target.Interior.ColorIndex = 15 'light gray
OldRange.Interior.ColorIndex = xlColorIndexNone
Set OldRange = Target
End Sub
--
Dave B.
6. Row select mode to highlight active row of active cell
7. How do I highlight the active cell in a spreadsheet?
8. Highlight the cells referenced in the active cell formula