![]() |
|
#5
|
|||
|
|||
|
Mine selects a column for ctrl+space. It must be some application optional setting that does that.
Some people like both for a bullseye. Right click the sheet's tab, View Code, and paste. Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
Union(Columns(Target.Column).EntireColumn, _
Rows(Target.Row).EntireRow).Select
Target.Activate
Application.EnableEvents = True
End Sub
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
autocorrect double space to single space
|
frankjake | Word | 8 | 09-21-2018 05:44 PM |
In 2010 document set for no space between paragraphs, but getting large space.
|
normancamp | Word | 10 | 12-25-2017 04:54 PM |
Night shift and Day shift
|
Tinbot11 | Project | 1 | 05-09-2016 06:32 PM |
Noob here - I need a shift calendar by days with count of shift.
|
freeman | Excel | 8 | 09-12-2012 08:45 AM |
How to keep the citation as one unit without using Ctrl+shift+space?
|
Jamal NUMAN | Word | 3 | 04-24-2011 04:48 PM |