Apr 10, 2002 #1 butchkmd Programmer Nov 13, 2001 83 US I used this line in my code Worksheets("worksheet6(R S Cont.(2))"!Range!(T33:AI33".Value = "" and I get the error "out of range" the cell range is there on ws6 I don't get it any suggestions? Thanks Matt
I used this line in my code Worksheets("worksheet6(R S Cont.(2))"!Range!(T33:AI33".Value = "" and I get the error "out of range" the cell range is there on ws6 I don't get it any suggestions? Thanks Matt
Apr 10, 2002 1 #2 S SkipVought Programmer Dec 4, 2001 47,492 US Hey butch, Two problems... 1. Need QUOTES around your range 2. No ! Worksheets(1).Range("T33:AI33".Value = "" Skip, metzgsk@voughtaircraft.com Upvote 0 Downvote
Hey butch, Two problems... 1. Need QUOTES around your range 2. No ! Worksheets(1).Range("T33:AI33".Value = "" Skip, metzgsk@voughtaircraft.com
Apr 10, 2002 #3 LSTAN Technical User Feb 2, 2002 190 SG Hi Try changing to this; Worksheets("worksheet6(R S Cont.(2))".Range("T33:AI33".Value = "" Hope this helps. rgds LSTAN Upvote 0 Downvote
Hi Try changing to this; Worksheets("worksheet6(R S Cont.(2))".Range("T33:AI33".Value = "" Hope this helps. rgds LSTAN
Apr 10, 2002 Thread starter #4 butchkmd Programmer Nov 13, 2001 83 US I changed it to this Sheet6!Range("T33:AH33".Value = "" I get an error that the object does not support this property or method. AAAAAHHHHHHHHHHHHHHH!!!!!!!!!!!!!![MAD] All I need to do is clear the range and replace the text The replace works using .value = what do I use to clear it? I'm really starting to not like Excel But I do like you guys! Upvote 0 Downvote
I changed it to this Sheet6!Range("T33:AH33".Value = "" I get an error that the object does not support this property or method. AAAAAHHHHHHHHHHHHHHH!!!!!!!!!!!!!![MAD] All I need to do is clear the range and replace the text The replace works using .value = what do I use to clear it? I'm really starting to not like Excel But I do like you guys!
Apr 10, 2002 #5 S SkipVought Programmer Dec 4, 2001 47,492 US READ MY LIPS.... No "!" NOT... Sheet6!Range("T33:AH33".Value = "" BUT... Sheet6.Range("T33:AH33".Value = "" Skip, metzgsk@voughtaircraft.com Upvote 0 Downvote
READ MY LIPS.... No "!" NOT... Sheet6!Range("T33:AH33".Value = "" BUT... Sheet6.Range("T33:AH33".Value = "" Skip, metzgsk@voughtaircraft.com
Apr 10, 2002 Thread starter #6 butchkmd Programmer Nov 13, 2001 83 US Roger Doger Tankx Upvote 0 Downvote