+ Reply to Thread
Results 1 to 9 of 9

Macro to insert new row and copy formulas from the above row.

  1. #1
    Registered User
    Join Date
    12-08-2009
    Location
    England
    MS-Off Ver
    Excel 2003
    Posts
    2

    Macro to insert new row and copy formulas from the above row.

    Okay, where to begin.. lol.

    Currently I use a macro to insert a new row above the cell which is selected, the macro copies the formatting from the row above but I need it, or a separate macro to also copy formula's from the row above in columns "V, W, X, AG, AH, AI."

    I have had a look on the web and cant really find anything (or probably not understand it as my knowledge of excel is competent and knowledge of VB is non existent).

    Below is the macro which is currently used to insert a new row and copy the formatting from the row above. Any suggestions or help would be much appreciated as I am really being pushed for a solution.

    (Apologies if I shouldn't have posted a new thread but I couldn't find anything that quite matched the exact macro I am after)
    ----------------------------
    Sub InsertRow()
    Dim Rng, n As Long, k As Long
    Application.ScreenUpdating = False
    Rng = InputBox("Enter number of rows required.")
    If Rng = "" Then Exit Sub
    Range(ActiveCell, ActiveCell.Offset(Val(Rng) - 1, 0)).EntireRow.Insert

    k = ActiveCell.Offset(-1, 0).Row
    n = Cells(k, 2).End(xlToLeft).Column
    Range(Cells(k, 2), Cells(k + Val(Rng), n)).FillDown

    End Sub

  2. #2
    Valued Forum Contributor rwgrietveld's Avatar
    Join Date
    09-02-2008
    Location
    Netherlands
    MS-Off Ver
    XL 2007 / XL 2010
    Posts
    1,671

    Re: Macro to insert new row and copy formulas from the above row.

    Please read the forum rules and follow the link I provide in my signature.
    Looking for great solutions but hate waiting?
    Seach this Forum through Google

    www.Google.com
    (e.g. +multiple +IF site:excelforum.com/excel-general/ )

    www.Google.com
    (e.g. +fill +combobox site:excelforum.com/excel-programming/ )

    Ave,
    Ricardo

  3. #3
    Valued Forum Contributor rwgrietveld's Avatar
    Join Date
    09-02-2008
    Location
    Netherlands
    MS-Off Ver
    XL 2007 / XL 2010
    Posts
    1,671

    Re: Macro to insert new row and copy formulas from the above row.

    This is what I have on the shelve:
    Please Login or Register  to view this content.
    See the attached WB for the Userform that calls this function.

    Not to offense, but your code will run into error when the user gives a Non numeric.

    .... and now get those TAGS fixed in your original post.
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    12-08-2009
    Location
    England
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Macro to insert new row and copy formulas from the above row.

    Thanks for the help, apologies for the tags.. they should be removed now.

    I still can't seem to get this to work. I have selected F 11 - insert module and pasted the code you've given me but it just changes the name of the "insert row" macro and gives me the same result of inserting a row with all the formatting of the above row but not the formula's.

    Please let me know if I am doing something wrong.

    I would be happy to use a separate macro to copy the formulas in the row above if it avoids any issues.

    Again your help would be much appreciated.

  5. #5
    Registered User
    Join Date
    11-19-2012
    Location
    Iowa, USA
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Macro to insert new row and copy formulas from the above row.

    I am interested in this as well but slightly different. I want to copy a specific row (rows("500:500")) that has all my formulas and formats but no data yet. So i want the macro to copy that row and then insert it above the current row I have selected when i hit the macro shortcut. I'm new to the macro world so any help is appreciated. Also if you can give me a good reference to teach myself some of the basic VBA, that would be great as well.

  6. #6
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: Macro to insert new row and copy formulas from the above row.

    Welcome to the Forum, unfortunately:

    Your post does not comply with Rule 2 of our Forum RULES. Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other thread. It makes sense to have a new thread for your question because a thread with numerous replies can be off putting & difficult to pick out relevant replies.
    HTH
    Regards, Jeff

  7. #7
    Registered User
    Join Date
    11-19-2012
    Location
    Iowa, USA
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Macro to insert new row and copy formulas from the above row.

    Sorry about that. I will post another thread. Thank you.

  8. #8
    Registered User
    Join Date
    01-01-2014
    Location
    Jaipur
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Macro to insert new row and copy formulas from the above row.

    can you please provide vba for inserting rows above the last row (reference to last row should remain static)

    tks
    drv

  9. #9
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Macro to insert new row and copy formulas from the above row.

    Quote Originally Posted by DR Verma View Post
    can you please provide vba for inserting rows above the last row (reference to last row should remain static)

    tks
    drv
    Pls take a look to post#6.
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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