Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have the following macros to insert 2 rows when data is entered in column
"A". Private Sub Worksheet_Change(ByVal Target As Range) If Target.Row < 10 Or Target.Column < 1 Then Exit Sub Application.EnableEvents = False Target.Offset(1).Resize(2).EntireRow.Insert Target.Offset(2).Select Application.EnableEvents = True End Sub Works like a charm...Say I enter 001 in column "A1", it inserts two rows (A2, A3) but.... I need to be able to "tab" Key over from column "A" to column "b" and so on. Right now if I tab after the two rows have been itserted it just keeps adding rows unless I manually place my cursor in the next column. This is something I could probably live with but would also like to know if there is any other options???? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro to copy and paste values (columns)I have a macro file built | Excel Programming | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
Need syntax for RUNning a Word macro with an argument, called from an Excel macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |