Thread
:
Automate Formula script
View Single Post
#
2
Posted to microsoft.public.excel.misc
Gary''s Student
external usenet poster
Posts: 11,058
Automate Formula script
Sub formularizer()
For Each r In Intersect(ActiveSheet.UsedRange, Range("A:A"))
If IsEmpty(r) Then
Else
n = r.Row
r.Offset(0, 3).Formula = "=B" & n & "+C" & n
End If
Next
End Sub
--
Gary''s Student - gsnu200909
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student