Heya !
I was hoping someone could help me here,
im having a bit of trouble getting a macro to run the way i would like it to.
Im trying to get the macro to select a range , from for example row Z10 ( always different so activecell ) to row before the last filled cell , for example row Z5.
But all i can get the macro to do is select the last cell, not the range until.
This is what i got so far, hope someone can help !
Thanks in advance !
I was hoping someone could help me here,
im having a bit of trouble getting a macro to run the way i would like it to.
Im trying to get the macro to select a range , from for example row Z10 ( always different so activecell ) to row before the last filled cell , for example row Z5.
But all i can get the macro to do is select the last cell, not the range until.
Code:
Range("Z1").End(xlDown).Copy
Range("B1").End(xlDown).Select
Range("Z" & ActiveCell.Row).Select
This is what i got so far, hope someone can help !
Thanks in advance !