SanjayGMusafir
Well-known Member
- Joined
- Sep 7, 2018
- Messages
- 1,503
- Office Version
- 2021
- Platform
- MacOS
Dear Experts
I often need to copy data from few columns in a row and then paste it in the same columns in the last row of a table.
I tried writing a code using information from here and there, but it's not working at all. Can you help find me the error and give me a workable code.
Thanks a lot
I often need to copy data from few columns in a row and then paste it in the same columns in the last row of a table.
I tried writing a code using information from here and there, but it's not working at all. Can you help find me the error and give me a workable code.
Thanks a lot
Code:
Sub JumpClientsBottom()
'
' JumpClientsBottom Macro
'
'
Sheets("Client").Select
Dim lRow As Long
lRow = Cells(rows.Count, 1).End(xlUp).Row
'To go to last row of the same Active column
Range((ActiveCell.Column) & lRow).Select
End Sub