Thread
:
Precedents for formulas
View Single Post
#
10
Posted to microsoft.public.excel.programming
Phillip[_5_]
external usenet poster
Posts: 33
Precedents for formulas
Phillip London UK
Try This
Sub MyPrecedents()
Dim rng As Range
Dim s As Integer
s = ActiveSheet.Range("A1").Precedents.Count
Set rng = ActiveSheet.Range("A1").Precedents
For x = 1 To s
MsgBox rng.Areas(x).Address
Next
End Sub
Reply With Quote
Phillip[_5_]
View Public Profile
Find all posts by Phillip[_5_]