Results 1 to 10 of 10

Help with Macro to Copy/Paste cells to different worksheet based on Value

Threaded View

  1. #8
    Registered User
    Join Date
    11-25-2013
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    5

    Re: Help with Macro to Copy/Paste cells to different worksheet based on Value

    I ran this macro for one name but need to do it for different names - so I need to get the macro to use the name I run in the cell I'm in when I run it:

    Sub CopyDataForName()
    '
    ' CopyDataForName Macro
    '
    ' Keyboard Shortcut: Ctrl+Shift+Y
    '
        Sheets("2B 2014 Proposed Class List").Select
        Application.CutCopyMode = False
        ActiveCell.FormulaR1C1 = "Andrew Dibby"
        Sheets("1B 2013 data").Select
        Cells.Find(What:="Andrew Dibby", After:=ActiveCell, LookIn:=xlFormulas, _
            LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=False, SearchFormat:=False).Activate
        ActiveCell.Offset(0, 1).Range("A1:Y1").Select
        Selection.Copy
        Sheets("2B 2014 Proposed Class List").Select
        ActiveCell.Offset(0, 1).Range("A1").Select
        ActiveSheet.Paste
    End Sub
    Last edited by arlu1201; 11-25-2013 at 06:40 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Trying to copy and paste certain cells from one worksheet to another using a macro
    By renec in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 04-26-2013, 11:55 PM
  2. [SOLVED] Macro - Copy and Combine values in cell and paste it in other cells based on Unique ID
    By haleakala17 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-11-2012, 05:41 PM
  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. Copy Paste cells into a new sheet based on criteria macro
    By Clessie1919 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-19-2012, 02:43 AM
  5. Macro for WS/WB comparisons, and copy/paste two cells based on matches
    By adilley in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-13-2011, 10:46 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