View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
rpsmith123 rpsmith123 is offline
external usenet poster
 
Posts: 1
Default how to access column 8 in my Range

Hi,

I want to place "1" in column 8 in every row in my range named
"LegendList". How do I do this?

I tried:

LegendList(, 8) = "1"

and I tried

With LegendList
.Cells(, 8) = "1"
end with

Neither works...
Help...please
Thanks,
Paul