+ Reply to Thread
Results 1 to 4 of 4

Copy, pasting the informations

Hybrid View

  1. #1
    Registered User
    Join Date
    08-02-2008
    Location
    India
    Posts
    88

    Copy, pasting the informations

    I have a workbook containing 4 sheets.. 1,2,3, master. I need to copy the informations in the sheets 1,2 and 3 and paste it in the master sheet.

    The datas may vary everyday and the cell A contains the formula (till A100) which is protected. Will be great if you provide me the coding which points at Cell B.

    I have attached the sample workbook.

    Thanks a ton
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor
    Join Date
    05-14-2009
    Location
    gold coast
    MS-Off Ver
    Excel 2007
    Posts
    843

    Re: Copy, pasting the informations

    Try.
    sub copypaste ()
    Sheet1.Activate
    Range("A2", Cells.SpecialCells(xlCellTypeLastCell)).Copy
    Sheet4.Activate
    Sheet4.Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial xlPasteAll
    
    Sheet2.Activate
    Range("A2", Cells.SpecialCells(xlCellTypeLastCell)).Copy
    Sheet4.Activate
    Sheet4.Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial xlPasteAll
    
    Sheet3.Activate
    Range("A2", Cells.SpecialCells(xlCellTypeLastCell)).Copy
    Sheet4.Activate
    Sheet4.Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial xlPasteAll
    
    End Sub

  3. #3
    Forum Contributor
    Join Date
    02-27-2008
    Posts
    764

    Re: Copy, pasting the informations

    Hi
    try the macro in the attached file
    Ravi
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    07-14-2009
    Location
    London
    MS-Off Ver
    Excel 2003
    Posts
    32

    Re: Copy, pasting the informations

    I need to verify something with you. Are you looking for a macro that allows the Master page to change the grades of the students when you make a change to the grades in anyone of the 3 sheets?

+ 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