copy range on every worksheet (diff names) to a master worksheet (to be created)

  • Thread starter Thread starter Bernie
  • Start date Start date
B

Bernie

Any ideas??

I need to copy a range (same location) on every worksheet (diff names
to a master worksheet (to be created).
I also need this range to be pasted special (transform) so the range o
4-5 cells is horizontal for a mailmerge instead of vertical.

Please help??!! :confused
 
Why " :confused:"

did you try doing it with the macro recorder turned on and then couldn't
understand the results.

Range("B3:E12").Select
Selection.Copy
Sheets("Sheet2").Select
Range("C4").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=
_
False, Transpose:=True

What part is confusing?

You don't know how to generalize it and copy progressively.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top