Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 07-15-2018, 11:24 AM
p45cal's Avatar
p45cal p45cal is offline VBA to Insert variable rows based on a data in active cell Windows 10 VBA to Insert variable rows based on a data in active cell Office 2016
Expert
 
Join Date: Apr 2014
Posts: 956
p45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond repute
Default

I need help; I'm helping the taxman.





Right click on the tab of the sheet you want this to work on, and choose View code, then copy and paste this code where the cursor is flashing:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count = 1 Then
  If Not Intersect(Target, Range("L:L")) Is Nothing Then
    x = [{2017,2017;2016,2016;2015,2015;2014,2014;2013,2013;2012,2012;2006,2011;1994,2005;1987,1993;1980,1986;"",1979}]
    Z = Application.Match(Target.Value, Application.Index(x, 0, 2), 0)
    If Not IsError(Z) Then
      Z = Z - 1
      If Z >= 8 Then '<<<adjust the 8 to the minimum number of rows to be inserted
        Application.EnableEvents = False
        Target.Resize(Z).EntireRow.Insert
        Target.Offset(-Z, -1).Resize(Z, 2).Value = x
        Application.EnableEvents = True
        Target.Offset(1).Select
      End If
    End If
  End If
End If
End Sub
Go back to the sheet and enter 1979, 1986 or 1993 somewhere in column L.Currently, it works only for those three years, but this can easily be adjusted to other numbers by changing the line:
If Z >= 8 Then '<<<adjust the 8 to the minimum number of rows to be inserted
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
creating multiple data rows, for labels based on a cell value josbor01 Excel Programming 3 01-02-2018 02:04 PM
VBA to Insert variable rows based on a data in active cell Would like a macro to copy a cell down a variable number of rows Rod_Bowyer Excel Programming 6 03-25-2016 08:18 PM
Perform calc in active cell then highlight based on formula result grexcelman Excel Programming 4 01-12-2015 11:00 AM
VBA to Insert variable rows based on a data in active cell Insert values from multiple rows based on value in one column pachmarhi Excel 3 07-18-2014 09:57 PM
VBA to Insert variable rows based on a data in active cell Hide Rows and Update Chart based on cell value ubns Excel Programming 5 05-07-2012 05:44 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 12:33 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft