View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Brian Barbre[_3_] Brian Barbre[_3_] is offline
external usenet poster
 
Posts: 3
Default Using CELLS function to define RANGE funcion

I am writing this VB code

Set MyCells = Worksheets("Sheet2").Range(Cells(1, 1), Cells(1, 3000))

I then want to use MyCells as a reference for a Application function.
However, I get the "Application-defined or object-defined error" message.
Anyone know what I might be doing wrong here?

Thanks
Brian