dcolella15
New Member
- Joined
- Oct 28, 2015
- Messages
- 11
Here is a screenshot of my workbook.
http://my.jetscreenshot.com/20092/20160209-nszp-274kb
What I am doing now is a manual process. I am copying the above Highlighted rows and then "Inserting Copied rows" under each row that is labeled "original row" to generate the required data in rows 1-23 referencing the columns to the left.
I'm not great with <acronym title="vBulletin" style="border-width: 0px 0px 1px; border-bottom-style: dotted; border-bottom-color: rgb(0, 0, 0); cursor: help; color: rgb(51, 51, 51); background-color: rgb(250, 250, 250);">VB</acronym>, but this process is so "repetitive" that there must be script to eliminate the manual nature of this.
I used the macro creator to Copy the required cells, but the insert function under the required rows has me at a loss. (See Below)
Any help would be great!
Thanks in advance!!
DC
http://my.jetscreenshot.com/20092/20160209-nszp-274kb
What I am doing now is a manual process. I am copying the above Highlighted rows and then "Inserting Copied rows" under each row that is labeled "original row" to generate the required data in rows 1-23 referencing the columns to the left.
I'm not great with <acronym title="vBulletin" style="border-width: 0px 0px 1px; border-bottom-style: dotted; border-bottom-color: rgb(0, 0, 0); cursor: help; color: rgb(51, 51, 51); background-color: rgb(250, 250, 250);">VB</acronym>, but this process is so "repetitive" that there must be script to eliminate the manual nature of this.
I used the macro creator to Copy the required cells, but the insert function under the required rows has me at a loss. (See Below)
Code:
Sub Copy_insert_Rows()'
' Copy_insert_Rows Macro
' Copy_insert_Rows - for revenue re-class
'
' Keyboard Shortcut: Ctrl+r
'
Rows("3:25").Select
Selection.Copy
End Sub
Any help would be great!
Thanks in advance!!
DC