Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim cell As Range
For Each cell In Worksheets("sheet1").Range("N6:N325") cell.Resize(1, 5).Copy With Worksheets("sheet2") .Range("B2").PasteSpecial Paste:=xlValues, Transpose:=True cell.Offset(0, -5).Value = .Range("B8:B11").Value End With -- Regards, Tom Ogilvy Jerry wrote in message ... Hi, I want to past the transposed range as values. What is the syntax? Thanks, Jerry Dim cell As Range For Each cell In Worksheets("sheet1").Range("N6:N325") cell.Resize(1, 5).Copy With Worksheets("sheet2") .Range("B2").PasteSpecial Transpose:=True cell.Offset(0, -5).Value = .Range("B8:B11").Value End With |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy And Paste Macro Syntax Problem | Excel Worksheet Functions | |||
find values in multiple cells and paste row values | Excel Discussion (Misc queries) | |||
can you change the default paste method? (paste values) | Excel Discussion (Misc queries) | |||
Paste Values | Excel Programming | |||
VBA Syntax for VLOOKUP to return array of return values | Excel Programming |