Posts by aisietie

    Hello,

    The code I use copies "Blad6" of workbook Names, and replce the page"Blad6" in Workbook "Form_transfertest".
    The problem is that the code insert a new page, I want that the old sheet "Blad6" in the workbook Form_transfertest is replaced by the copied one from workbook Names.
    The code:



    Greetings

    aisietie

    Re: Copy 10 cells from last Row


    Hello PCI,

    Thx for the help, and the file.
    What the macro ("test") do, is selecting the 10 last cells in Column C.
    What it must do is select (or copy) 10 cells (C,D,E, F, G, H, I, J, K, L) starting in column "C" on the last row.

    grtz

    aisietie

    Hi,

    Folowing code should copy 10 cells from last Row beginning in cell C

    Code
    Dim LastRow As Long
        LastRow = Blad1.Cells(1, 1).End(xlUp).Row
        Blad1.Cells(LastRow, "C").Resize(, 10).Copy



    But the first line is copied.
    What is the right code to do this?

    thanks

    aisietie