A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You could insert a loop between setting the value of the cell and copying/pasting the range:
Dim i As Integer
For i = 1 to 10
DoEvents
Loop
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am only a novice programer, so I am looking for some assitance getting started.
I have 3 sheets of data. Sheet 3 has a list of ssns (A11:A??). I'd like to copy each ssn to cell B8 on Sheet 1, then copy the formula results from Sheet 2 (E301:G302) to column FE on the same row where I grabbed the ssn from on sheet 3. I'd like to loop through all ssns on sheet 3.
can anybody please provide with some sample code to get started? thanks!
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
You could insert a loop between setting the value of the cell and copying/pasting the range:
Dim i As Integer
For i = 1 to 10
DoEvents
Loop
Answer accepted by question author
Change
Worksheets("Sheet2").Range("E301:G301").Copy _
Destination:=wsh.Range("FE" & r)
to
Worksheets("Sheet2").Range("E301:G301").Copy
wsh.Range("FE" & r).PasteSpecial Paste:=xlValues
Answer accepted by question author
You can't directly copy cells from two rows (301 and 302) into one...
Sub Loopy()
Dim wsh As Worksheet
Dim r As Long
Dim m As Long
Set wsh = Worksheets("Sheet3")
m = wsh.Range("A" & wsh.Rows.Count).End(xlUp).Row
For r = 11 To m
Worksheets("Sheet1").Range("B8") = wsh.Range("A" & r)
Worksheets("Sheet2").Range("E301:G301").Copy _
Destination:=wsh.Range("FE" & r)
Next r
End Sub
If the cells are recalculated when you click in them, I'd say calculation is not fully automatic...
I would suggest to have the calculation done in VBA itself; rather copying the formula results from the other sheet.