hi,
i have data in Range A4:A6 and B4:B23
now i want to data copy B7:B23 and paste to A7
if
i have data in Range A4:A10 and B4:B23
now i want to data copy B11:B23 and paste to A11
copy data according to range A4:?
hope some one will help
hi,
i have data in Range A4:A6 and B4:B23
now i want to data copy B7:B23 and paste to A7
if
i have data in Range A4:A10 and B4:B23
now i want to data copy B11:B23 and paste to A11
copy data according to range A4:?
hope some one will help
Use Code-Tags for showing your code :
Please mark your question Solved if there has been offered a solution that works fine for you
If You like solutions provided by anyone, feel free to add reputation using STAR *
How about![]()
Sub HaroonSid() With Range("A" & Rows.Count).End(xlUp).Offset(1) If .Row >= 23 Then Exit Sub Range("B" & .Row, Range("B23")).Copy .Offset() End With End Sub
You're welcome & thanks for the feedback.
Sir
this code not working with table range
please any solution
How aboutThis will not work if you have non-contiguous blanks in col A![]()
Sub HaroonSid() With ActiveSheet.ListObjects(1).ListColumns(1) With .Range.SpecialCells(xlBlanks) .Value = .Offset(, 1).Value End With End With End Sub
Then please supply a realistic sample workbook.
Working very well now
thanks for your valueable time
You're welcome & thanks for the feedback.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks