View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Brian Brian is offline
external usenet poster
 
Posts: 49
Default Iterate through the values in a named range?

How do I iterate through the values in a named range? In the code below 'nameChannels' is a named range in my file

Bria

Sub Extract_Paf_Forms(

myName = Array(nameChannels

For Each a In myNam
MsgBox (a
Next

End Sub