View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Luke Luke is offline
external usenet poster
 
Posts: 142
Default Problem inserting cut range

I'll have to get it on Monday (Feb 8) since the code's on my machine at work.
I copy/pasted the code from my machine to here, however, so it doesn't look
exactly like it did in the editor. The code is actually all one line, with a
space between "Cut" and the second "Range". If it still works for you as one
line, I'll post the entire code (that I have so far) on Monday.

Thanks.

"Ryan H" wrote:

Post the rest of your code so we can help you. That snipet of code worked
for me.
--
Cheers,
Ryan


"Luke" wrote:

I'm trying to cut a range then insert the cut range at a particular location.
The code looks like this:

Range("F5:G" & ActiveSheet.UsedRange.Rows.Count).Cut
Range("D5").Insert(xlShiftToRight)

However, when it reaches this point, I get an error saying "Cut method of
Range class failed". I've tried changing the destination range so that it
reads similar to the origin range, but that didn't help. Can someone help me
get the syntax on this line correct? I've got several similar lines further
down in the code. If I can fix this line, I'll be able to fix them all.

Thanks.