View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Cone[_2_] Jim Cone[_2_] is offline
external usenet poster
 
Posts: 1,549
Default Did FillDown break in 2007??


wks.Range(x, y +1) is not a range object.
--
Jim Cone
Portland, Oregon USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)


"Ed from AZ"

wrote in message
I was "upgraded" to 2007. Why doesn't this work??

If Target.Column = 4 And _
Target.Row < 21 Then
x = Target.Row
y = Target.Column

With wks
.Range(x, y + 1).FillDown

Method 'range' of object "wks" failed????
Ed