View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Reference Row Address

Hi,

For xl2k onwards, if the values are constants, you could try:

Sub Test()

Dim Rng As Range
Dim v As Variant

Set Rng = Range("Datalist").Columns(3)
.Cells.SpecialCells (xlCellTypeConstants)

msgbox Rng.Address
v = Split(Rng.Address, ",")

End Sub

If you are using an earlier version, do a google search for a Split97
function written by Tom Ogilvy and use instes of the Split function
employed above.

---
Regards,
Norman


"scain2004 " wrote in message
...
If I have a range named Datalist and I want to get the address for every
row that contains values in the third column, how can I get this
address and put it into an array for use with a scrollbar.

Any suggestions?


---
Message posted from http://www.ExcelForum.com/