+ Reply to Thread
Results 1 to 13 of 13

Insert rows based on the current cell value and, then, copy some cells into the new rows

Hybrid View

Excel-RZ Insert rows based on the... 11-03-2013, 12:52 AM
patel45 Re: Insert rows based on the... 11-03-2013, 03:11 AM
HaHoBe Re: Insert rows based on the... 11-03-2013, 05:05 AM
Excel-RZ Re: Insert rows based on the... 11-03-2013, 12:59 PM
HaHoBe Re: Insert rows based on the... 11-03-2013, 01:08 PM
Excel-RZ Re: Insert rows based on the... 11-03-2013, 01:43 PM
HaHoBe Re: Insert rows based on the... 11-03-2013, 01:53 PM
Excel-RZ Re: Insert rows based on the... 11-03-2013, 02:13 PM
HaHoBe Re: Insert rows based on the... 11-03-2013, 02:21 PM
Excel-RZ Re: Insert rows based on the... 11-03-2013, 05:19 PM
Excel-RZ Re: Insert rows based on the... 11-03-2013, 12:38 PM
alansidman Re: Insert rows based on the... 11-03-2013, 07:48 AM
Excel-RZ Re: Insert rows based on the... 11-03-2013, 12:10 PM
  1. #1
    Registered User
    Join Date
    11-02-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Insert rows based on the current cell value and, then, copy some cells into the new ro

    Wow! That works great Holger! Thank you very much for the solution and your rapid replies! Look like it is an absolute macro and not relative to where the cursor is in the active sheet, so, in my actual data set, I will just need to adjust the column and cell references to be appropriate for that data, correct? What I had supplied was just a sample so that I could show what I needed. I think I should be able to easily make this work on my real data. Thanks Again! RZ

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Insert rows based on the current cell value and, then, copy some cells into the new ro

    Hi, Excel-RZ,

    the amendments could be made in the 2 constants at the begin of the code:
    Sub EF965720_3()
    Dim lngCounter As Long
    
    Const cstrCOL As String = "J"
    Const clngSTART As Long = 10
    
    For lngCounter = Range(cstrCOL & Rows.Count).End(xlUp).Row To clngSTART Step -1
      With Cells(lngCounter, cstrCOL)
        If IsNumeric(.Value) And .Value > 1 Then
          With .Offset(1, 0).Resize(.Value - 1, 1)
            .EntireRow.Insert
          End With
          .Offset(1, 1).Resize(.Value - 1, 5).Value = .Offset(0, 1).Resize(1, 5).Value
        End If
      End With
    Next lngCounter
    End Sub
    You may think about getting the column number using Application.Inputbox(type:=8) for a range but you would need to adapt the code slightly (range wants a string as the first part while Cells will work with both strings and longs for Columns).

    The Offset must be adapted if other than the next five columns should be copied or more or less than five columns.

    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  3. #3
    Registered User
    Join Date
    11-02-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Insert rows based on the current cell value and, then, copy some cells into the new ro

    Hello Holger,

    One more thing (I hope)... I just applied your code to my real data set and it worked! Yay! One improvement I need to make is that the cells that are being copied have just the values of the original cells and not the formulas. Sorry, I did not mention before that some of my source cells contain formulas. Normally, this is a very easy thing to change when pasting, as you just select values only or formats only or just paste the whole contents and everything goes, including formulas. In this case, it is not clear to me what part of the VBA code I would change to make it copy all cell attributes (formulas, formats and values). Would you please advise me on how to change the code to get the formulas to copy as well? Thanks for you help again! RZ

  4. #4
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Insert rows based on the current cell value and, then, copy some cells into the new ro

    Hi, Excel-RZ,

    from the last posted code change the code line
           .Offset(1, 1).Resize(.Value - 1, 1).Value = .Offset(0, 1).Resize(1, 5).Value
    to read
           .Offset(0, 1).Resize(1, 5).Copy Destination:=.Offset(1, 1).Resize(.Value - 1, 1)
    Ciao,
    Holger

  5. #5
    Registered User
    Join Date
    11-02-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    8

    Re: Insert rows based on the current cell value and, then, copy some cells into the new ro

    That works great! Thanks again for all your help! How cool is this (for me anyway)... collaborating with a guy in Germany to get my Excel challenged solve... My family 6 generations back was from Baden Baden. Thanks again Holger! I will mark this thread as solved. (..as soon as I can figure out how to do that.) Ciao! RZ

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] insert rows based on number in cell and copy the data down into the new rows
    By pziefle in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 05-05-2013, 11:19 AM
  2. Insert rows based on a value in a cell and copy the data down into the new rows
    By eyeman96 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-05-2013, 07:54 AM
  3. Excel Macro to insert two rows based on condition and copy and paste multiple cells
    By mannabhalo in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 11-13-2012, 12:56 PM
  4. Insert a number of rows based on a cell value and copy formulas on multiple worksheets
    By Charleneq40 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-08-2012, 12:45 PM
  5. [SOLVED] Insert Multiple Rows Based Off Number in Cell and Copy Data From Above New Rows
    By tstell1 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-02-2012, 04:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1