
Sheets("foglio1").Select
For i = 30 To 300
With Sheets("fogliox")
If IsNumeric(Cells(i, 2)) Then
.Cells(1, i) = Cells(i, 2)
End If
End With
Next i
|
Sheets("foglio1").Select
'colonna di partenza
y=1
For i = 30 To 300
With Sheets("fogliox")
If IsNumeric(Cells(i, 2)) Then
.Cells(1, y) = Cells(i, 2)
y=y+1
End If
End With
Next i |
y = 1
For i = 30 To 300 'copia valori teorici
With Sheets("foglio4")
If IsNumeric(Cells(i, 3)) Then
If Cells(i, 3) <> "" Then
.Cells(1, y) = Cells(i, 3)
y = y + 1
End If
End If
End With
Next i
|
. If IsNumeric(Cells(i, 3)) And Cells(i, 3) <> "" Then . |
For i = 1 To 200 'istruzioni . . If i = 50 Then i = 80 Next |
Sheets("foglio1").Select
y = 1
For i = 28 To 80 Step 4
With Sheets("eCAV")
For n = 1 To 11
.Cells(6, 5 + y) = Cells(i, n)
y = y + 1
Next n
End With
Next i |
Sheets("foglio1").Select
y = 1
For i = 28 To 80 Step 4
With Sheets("eCAV")
For n = 1 To 11
.Cells(6, 5 + y) = .Cells(6, 5 + y) & Cells(i, n) & vbLf
Next n
y = y + 1
End With
Next i |
.Cells(6, 5 + y) = Cells(i, 2) & Cells(i, 3) & Cells(i, 4) & Cells(i, 5) & Cells(i, 6) & Cells(i, 7) & Cells(i, 8) & Cells(i, 9) & Cells(i, 10) & Cells(i, 11) |
For j = 2 to 11
.Cells(6, 5 + y) = .Cells(6, 5 + y) & Cells(i, j)
Next |
