Thread
:
Referring to named ranges
View Single Post
#
2
Posted to microsoft.public.excel.programming
Executor
external usenet poster
Posts: 74
Referring to named ranges
Hi Hardy,
Try this:
Sub Update()
Dim FIData As Range
Set rngFIData = Range("FIData")
rngFIData.Select
:
:
End Sub
or this
Sub Update()
Range("FIData").Select
:
:
End Sub
Good luck,
Wouter
Reply With Quote
Executor
View Public Profile
Find all posts by Executor