
k = Range("b" & Rows.Count).End(xlUp).Row
j = Range("c" & Rows.Count).End(xlUp).Row + 1
For i = j To k
Set fin = Sheets("TIT").Columns(4).Find(what:=Cells(i, 2), lookat:=xlWhole)
If Not fin Is Nothing Then
Range(Cells(i, 3), Cells(i, 8)) = Sheets("TIT").Range(Sheets("TIT").Cells(fin.Row, 68), Sheets("TIT").Cells(fin.Row, 73)).Value
End If
Next
Application.ScreenUpdating = True |
Application.Calculation = xlCalculationManual '''faccio quello che devo fare Application.Calculation = xlCalculationAutomatic Application.Calculate |
