![]() |
|
#2
|
||||
|
||||
|
Have a try with this macro:
Code:
Option Explicit
Sub test()
Dim i
i = 2
Do Until Range("A" & i) = ""
Range("A" & i).Offset(0, 3) = Range("A" & i) + 1
Range("B" & i).Offset(0, 1) = Range("B" & i) + 1
i = i + 1
Loop
End Sub
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| auto fill up | mare1984 | Word | 1 | 06-27-2019 08:09 PM |
Auto Fill Forms
|
pgilbert0824 | Excel | 2 | 10-30-2016 01:02 AM |
Excel Auto-fill Issues
|
officeboy09 | Excel | 8 | 01-14-2014 05:52 PM |
| auto fill a word doc from another program | hcubed | Office | 0 | 06-19-2013 09:42 PM |
Auto Color Fill Question
|
Kinar | Excel | 3 | 05-14-2013 07:46 AM |