Hello all,
this is my first post as i've recently begun to dabble in VBA..and to be fair i'm quite amazed at how useful it is.
I need your help today with a code i'm writing that would allow me to copy the last visible cell from a given column (B) onto a new sheet, here is my code so far but i'm getting an issue clearing the copy part
Worksheets("Summary").Activate
Range("B" & Cells.Rows.Count).End(xlUp).Select.Copy
Worksheets(2).Activate
Range("d1").Paste
thank you for your help, i appreciate it
this is my first post as i've recently begun to dabble in VBA..and to be fair i'm quite amazed at how useful it is.
I need your help today with a code i'm writing that would allow me to copy the last visible cell from a given column (B) onto a new sheet, here is my code so far but i'm getting an issue clearing the copy part
Worksheets("Summary").Activate
Range("B" & Cells.Rows.Count).End(xlUp).Select.Copy
Worksheets(2).Activate
Range("d1").Paste
thank you for your help, i appreciate it