Darkening the whole row

Gokhan_ciftcioglu

New Member
Joined
Mar 24, 2017
Messages
30
Hello everyone,

I have a list made of many columns and rows, and I need to control it. For example; I need to check the cell A100 by looking at K100 cell. I think it is better for me to darken all the cells in the row 100 to make the vision clear. Are there any options in excel to do that because I don't want to use shift + space bar every time.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
You could possibly use a macro. Right click on the sheet name and select "View Code". Then paste the following:

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Target.Count = 1 Then
    Target.EntireRow.Select
    Target.Activate
End If

End Sub

WBD
 
Upvote 0
You could possibly use a macro. Right click on the sheet name and select "View Code". Then paste the following:

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Target.Count = 1 Then
    Target.EntireRow.Select
    Target.Activate
End If

End Sub

WBD
thank you so much. that works very well
 
Upvote 0

Forum statistics

Threads
1,215,400
Messages
6,124,702
Members
449,180
Latest member
craigus51286

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top