LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 536
Default Resize a row but copy but skip columns I don't want to copy

With the resize in this segment of code, it copies col A and B. On that same row I want to also copy col D and F.

So the resize would be c.Offset(0, -1).Resize(1, col's A, B, D, F).Copy

Is that possible in a routine resize?

In this case it would always be those four columns, so I thinking those four columns will need to be in an array and then refer to the array in the resize?

I have been searching my archives for something like this but coming up short.

Thanks.
Howard

lRow = Cells(Rows.Count, 2).End(xlUp).Row
Set bRng = Range("B14:B" & lRow)

For Each c In bRng
If c.Value < "" Then
c.Offset(0, -1).Resize(1, 2).Copy
Worksheets("Invoice Data").Range("C100").End(xlUp).Offset(1, 0).PasteSpecial
End If
Next
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Skip Reference Sequences during copy sly411 Excel Discussion (Misc queries) 3 March 20th 10 08:31 PM
Skip columns and copy formulas [email protected] Excel Discussion (Misc queries) 13 March 15th 07 05:54 AM
Skip cells and copy formulas [email protected] Excel Discussion (Misc queries) 5 February 13th 07 06:50 PM
Skip and copy formulas [email protected] Excel Worksheet Functions 1 February 12th 07 09:18 PM
resize and copy jer Excel Programming 2 January 14th 06 08:32 PM


All times are GMT +1. The time now is 06:28 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"