Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Does anyone know where you can disable row selection via the left-click
on the row header? I have a spreadsheet that will not allow the entire row to be selected when a left-click is performed in the row header. The select all button will not respond to a left-click either. I need to mimic this behavior in another workbook, but I cannot find where, or how to do that. Thank you in advance for any information on this. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use the selectionchange event
Private Sub Worksheet_SelectionChange(ByVal Target As Range) if Target.Address = Target.EntireRow.Address then application.EnableEvents = False Target(1).Select application.EnableEvents = True End if End Sub You could use the workbook level equivalent as well. New to events? See Chip Pearson's page on events http://www.cpearson.com/excel/events.htm -- Regards, Tom Ogilvy "n30l1th1c" wrote in message oups.com... Does anyone know where you can disable row selection via the left-click on the row header? I have a spreadsheet that will not allow the entire row to be selected when a left-click is performed in the row header. The select all button will not respond to a left-click either. I need to mimic this behavior in another workbook, but I cannot find where, or how to do that. Thank you in advance for any information on this. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Omit header from first page without embedding header in code | Excel Worksheet Functions | |||
Excel - option to select the same header for mutliple tabs | Setting up and Configuration of Excel | |||
I can't select/edit objects. It says [Group] on the header bar. | Excel Discussion (Misc queries) | |||
Select max value in a row and pick the column header | Excel Discussion (Misc queries) | |||
Select header if formula | Excel Worksheet Functions |