Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is the issue related with for loop, I have searched the forums for the issue but couldn't find an answer related with the query. Spreadsheet has data like this

  A               B  C  D  E

2 20120425 09:55:00 101 99 102 100.50
3 20120425 09:55:00 101 102 98 101.50

What I want to do is like this on same sheet

  H       

2 101
3 99
4 102
5 100.50

That is copy range B2:E2 then select h2 and paste special( it will get paste on h2,h3,h4,h5.) Then repeat the task for B3:E3 copy the range and paste special on h6.

I have recorded the macro but task has to repeat on nearly 5000 rows I don't have a technical background and not that much familiar with VBA. I would appreciate any help possible for the problem.

History: I have tried few codes posted here which were familiar with the subject but most of the codes end up with run time error, few sucked the data and if i tried to edit something then VBA debugger would tell me that you can't run the code in break mode ( google for the error then pressed f5 to complete other running scripts and get some other sort of error like file has not been ended correctly or script error )

Recorded code

Sub Macro9()

' ' Macro9 Macro '

' Range("D1:G1").Select Selection.Copy Range("L1:L4").Select Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=True Range("D2:G2").Select Selection.Copy Range("L5:L8").Select Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=True End Sub

share|improve this question
Please tag with relevant info like programming language, environment, etc – Paul R May 2 '12 at 8:18

1 Answer

Somehow figure it out the answer, new to VBA, it was a good learning experience..

Sub alex4()

Dim k As Integer, i As Integer, lngRows As Integer

lngRows = Range("A1").CurrentRegion.Rows.Count

For k = 1 To (lngRows * 4)

For i = 1 To lngRows

k = k + 4

Range(Cells(i, 4), Cells(i, 7)).Select

Selection.Copy    

Range(Cells(k, 12), Cells(k + 3, 12)).Select    

Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _    

    False, Transpose:=True    

Next i

Next k

End Sub

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.