Macro copy and paste in next blank cell
Solved/Closed
fhernnet
-
May 3, 2010 at 03:12 AM
pratheepM7 Posts 1 Registration date Tuesday December 6, 2016 Status Member Last seen December 6, 2016 - Dec 6, 2016 at 11:49 AM
pratheepM7 Posts 1 Registration date Tuesday December 6, 2016 Status Member Last seen December 6, 2016 - Dec 6, 2016 at 11:49 AM
Related:
- Excel vba find next empty cell in column and paste
- Why can't i copy and paste on instagram ✓ - Instagram Forum
- Number to words in excel formula without vba - Guide
- Vba case like - Guide
- Gif in excel - Guide
- How to open vba in excel - Guide
4 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
May 3, 2010 at 07:05 AM
May 3, 2010 at 07:05 AM
Not entirely sure about your copy part. How ever if you want to paste by appending then you need to know the last used row. Here
Range("B283").Select
you are hard coding the row
this find the last used cell in column B and then select one cell below it
lMaxRows = Cells(Rows.Count, "B").End(xlUp).Row
Range("B" & lMaxRows +1).select
Range("B283").Select
you are hard coding the row
this find the last used cell in column B and then select one cell below it
lMaxRows = Cells(Rows.Count, "B").End(xlUp).Row
Range("B" & lMaxRows +1).select
May 3, 2010 at 08:26 AM
Aug 17, 2011 at 12:57 PM