Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a template that copies fromulas from a hidden row after an entry in
col A and moves the curser down to the next line. This means I don't need to know how many lines are required to complete the data entry. However I have added a total line below the data entry line. I want to modify the following code (kindly provided by Bernie Deitrick) to insert a row to move the total line down so as the new data line follows the one above. Private Sub Worksheet_Change(ByVal target As Range) If target.Cells.Count 1 Then Exit Sub If target.Column < 5 Then Exit Sub 'last data entry cell If target.Row < 6 Then Exit Sub 'starting row following hidden formula row If target.Offset(0, 1).Value < "" Then If MsgBox("You are overwrititng existing data. Are you sure?", vbYesNo) = vbNo Then Application.EnableEvents = False Application.Undo Application.EnableEvents = True Exit Sub End If End If Application.EnableEvents = False Cells(target.Row + 1, 1).Select 'MsgBox "Range" & target.Address & "was changed" Range("F5:Q5").Copy target.Offset(0, 1).Resize(1, 12) 'formula row to copy Application.EnableEvents = True End Sub -- Jim |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Insert new Worksheet with name, and insert the sheet into itsalphabetical / numerical location | Excel Programming | |||
insert row / insert column command buttons | Excel Worksheet Functions | |||
How can I insert a date with an icon (calendar) insert | Excel Discussion (Misc queries) | |||
Macro to insert copy and insert formulas only to next blank row | Excel Programming | |||
Insert cell/format/text/fontsize and auto insert into header? | Excel Programming |