Prev: code to delete vba code
Next: Macro to delete rows
From: PBG on 27 May 2010 16:03 I have the following code in my personal workbook. How can I get the VB code to work in all workbooks or do I have to make an add-in? Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.EnableEvents = False Union(Target.EntireColumn, Target.EntireRow).Select 'Target.EntireRow.Select Target.Activate Application.EnableEvents = True End Sub Also, can you change the color? Thanks
From: Mike H on 27 May 2010 16:55 Hi, I'd go with Chip Pearson's rowliner addin http://www.cpearson.com/excel/rowliner.htm -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "PBG" wrote: > I have the following code in my personal workbook. How can I get the VB code > to work in all workbooks or do I have to make an add-in? > > Private Sub Worksheet_SelectionChange(ByVal Target As Range) > Application.EnableEvents = False > Union(Target.EntireColumn, Target.EntireRow).Select > 'Target.EntireRow.Select > Target.Activate > Application.EnableEvents = True > End Sub > > Also, can you change the color? > Thanks
|
Pages: 1 Prev: code to delete vba code Next: Macro to delete rows |