+ Reply to Thread
Results 1 to 5 of 5

Copy formulaes to next column and make the previous data static(remove the formulaes)

Hybrid View

  1. #1
    Registered User
    Join Date
    09-04-2009
    Location
    India
    MS-Off Ver
    Excel 2002
    Posts
    10

    Copy formulaes to next column and make the previous data static(remove the formulaes)

    Hi,

    I am creating a weekly report wherein I use some formulaes to create the summary. I would like to know how to copy formulaes from one column to next on a button click and then remove formulaes from previous col. Help is much appreciated.

    Attached is a sample xls
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    09-04-2009
    Location
    India
    MS-Off Ver
    Excel 2002
    Posts
    10

    Re: Copy formulaes to next column and make the previous data static(remove the formul

    Hi All,

    Can anyone help me onto this?

    To give in more detail

    COL D has formulaes already.
    Step1:Now on button click, I would need to move formulaes from Col D to Col E( next blank column)
    Step2:remove formulaes from Col D ( make the data static)

  3. #3
    Forum Contributor
    Join Date
    09-30-2009
    Location
    Barcelona
    MS-Off Ver
    Excel 2010
    Posts
    274

    Post Re: Copy formulaes to next column and make the previous data static(remove the formul

    hi,

    i'm no expert, but I can give it a shot

    
    oldc = 4 'or last column presumable
    newc = 5 'or last column +1
    
    for each dr in ws.rows(firstr & ":" & lastr).rows
    
          dr.columns(newc).formula = dr.columns(oldc).formula 'this will copy exactly the same
                                     'formula, not sure if it will move references with it if any present
          dr.columns(oldc).value = dr.columns(oldc).value
    
    next dr

  4. #4
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Copy formulaes to next column and make the previous data static(remove the formul

    This is what you need

    sub copy_formulae()
        Columns("D:D").Copy
        Columns("E:E").Select
        ActiveSheet.Paste
        Columns("D:D").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
    End Sub
    You can get codes by recording the macro. Then you can tweak as required.

  5. #5
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Copy formulaes to next column and make the previous data static(remove the formul

        Dim NextCol As Long
        NextCol = Cells(1, Columns.Count).End(xlToLeft).Column
        Cells(1, NextCol).Copy Cells(1, NextCol + 1)
        Cells(1, NextCol).Value = Cells(1, NextCol).Value
    Adjust this to suit your range

        Dim NextCol As Long
        NextCol = Cells(1, Columns.Count).End(xlToLeft).Column
        Range(Cells(1, NextCol), Cells(Rows.Count, NextCol).End(xlUp)).Copy Cells(1, _
                                                                                  NextCol + 1)
        Range(Cells(1, NextCol), Cells(Rows.Count, NextCol).End(xlUp)).Value = Range(Cells(1, NextCol), Cells(Rows.Count, NextCol).End(xlUp)).Value
    Last edited by royUK; 10-05-2011 at 03:19 AM.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ 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