Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Highlight active row/column in Excel without using VBA?

What I want to achieve is to highlight active row or column. I used VBA solutions but everytime Selection_change event is used I am loosing chance to undo any changes in my worksheet.

Is there a way to somehow highlight active row / column without using VBA?

like image 1000
lowak Avatar asked Mar 12 '14 11:03

lowak


People also ask

Is there a way to highlight active row in Excel?

So, you need to refresh Excel manually. ➤ Press F9. As a result, Excel will refresh itself and the active row will be highlighted. So, now you just need to select a cell and press F9 to highlight the active row.

How do I highlight all active cells in a column?

Select the letter at the top to select the entire column. Or click on any cell in the column and then press Ctrl + Space.

How do I highlight a column row in Excel?

Click the small paint bucket icon, which has a yellow line underneath it, in the “Font” section of the Excel ribbon. Choose the color to use to actually highlight the lines. Click the small colored square. Now both lines are actually highlighted, even when you click off them.


1 Answers

The best you can get is using conditional Formatting.

Create two formula based rules:

  1. =ROW()=CELL("row")
  2. =COLUMN()=CELL("col")

As shown in:

enter image description here

The only drawback is that every time you select a cell you need to recalculate your sheet. (You can press "F9")

like image 110
hstay Avatar answered Sep 19 '22 23:09

hstay