Change cursor into big big cross to work better reading data in rows

Lince099

New Member
Joined
Feb 16, 2016
Messages
9
Hi,

I'd like to be able to change my cursor into a big cross that takes all the screen, so that when I'm on excel it's easier to see the data at the same row at the far end of the screen.

I don't mind if this change affects only excel or all the computer.

Has anyone ever done this or knows how to do it?

Ismael
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
I don't believe that can be done through the windows system. You could look to highlight the row once you click a cell.

Code needs to be added behind the worksheet. Right mouse button on the sheet name and select View Code, change the first drop down on the left at the top of the screen and select Worksheet, then paste in this code and return to the sheet. Click a cell and see if that helps.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
Application.ScreenUpdating = False
' Clear the colour
Cells.Interior.ColorIndex = 0
With Target
' Highlight the entire row and add colour
.EntireRow.Interior.ColorIndex = 8 'Find a number that might help
'.EntireColumn.Interior.ColorIndex = 8 'Find a number that might help
End With
Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0
Try this:
This is an auto sheet event script
Your Workbook must be Macro enabled
To install this code:
Right-click on the sheet tab
Select View Code from the pop-up context menu
Paste the code in the VBA edit window

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.Color = xlNone
Target.EntireRow.Interior.ColorIndex = 3
Target.EntireColumn.Interior.ColorIndex = 3
End Sub
 
Upvote 0
Try this:
This is an auto sheet event script
Your Workbook must be Macro enabled
To install this code:
Right-click on the sheet tab
Select View Code from the pop-up context menu
Paste the code in the VBA edit window

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.Color = xlNone
Target.EntireRow.Interior.ColorIndex = 3
Target.EntireColumn.Interior.ColorIndex = 3
End Sub

Thank My answer is this. I appreciate it.

It works, but when I save the excel file after having worked with it, the red filling will stay, wont it? Is there a way to get rid of it before saving the file, other than deleting the code from the workbook and manually taking off the red filling?
 
Upvote 0
I don't believe that can be done through the windows system. You could look to highlight the row once you click a cell.

Code needs to be added behind the worksheet. Right mouse button on the sheet name and select View Code, change the first drop down on the left at the top of the screen and select Worksheet, then paste in this code and return to the sheet. Click a cell and see if that helps.

Thank you Trevor. Do you know if there is any way not to ovewrite the other formatting on the page or to keep the original formatting on after finishing working on the workbook?

Thanks for your help!
 
Upvote 0
I know of no way to set all the cell's interior color back to the original color.
Thank My answer is this. I appreciate it.

It works, but when I save the excel file after having worked with it, the red filling will stay, wont it? Is there a way to get rid of it before saving the file, other than deleting the code from the workbook and manually taking off the red filling?
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,316
Members
452,634
Latest member
cpostell

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