Thread
:
How can i autofill cells
View Single Post
#
2
Posted to microsoft.public.excel.programming
acces[_4_]
external usenet poster
Posts: 1
How can i autofill cells
Sub test()
Dim allcells As Range, cell As Range
For Each cell In Range("a2:a100") 'a1 = error :)
If cell.Value = "" Then
cell.Value = cell.Offset(-1, 0).Value
End If
Next
End Sub
acces
---
Message posted from
http://www.ExcelForum.com/
Reply With Quote
acces[_4_]
View Public Profile
Find all posts by acces[_4_]