Salve a tutti,
date le mie conoscenze limitate in materia non riesco ad andare oltre
a completare questa macro.
UN GRANDE AIUTO
Sub Trova()
Dim e As Currency, f As Currency, g As Currency
e = [E1]
f = [F1]
g = [G1]
For g = 1 To 90
For f = 1 To 90
For e = 1 To 90
If Cells(1, 5).Value = Cells(1, 5).Value Then Cells(1, 5).Value = Cells(1, 5).Value + 1
If Cells(1, 5).Value > 90 Then Cells(1, 5).Value = 1
If Cells(3, 9).Value = Cells(4, 3).Value Then Exit For
Application.CutCopyMode = False
If Cells(1, 5).Value > 90 Then Cells(1, 6).Select
Next e
If Cells(1, 6).Value = Cells(1, 6).Value Then Cells(1, 6).Value = Cells(1, 6).Value + 1
If Cells(1, 6).Value > 90 Then Cells(1, 6).Value = 1
If Cells(3, 9).Value = Cells(4, 3).Value Then Exit For
Application.CutCopyMode = False
If Cells(1, 6).Value > 90 Then Cells(1, 7).Select
Next f
If Cells(1, 7).Value = Cells(1, 7).Value Then Cells(1, 7).Value = Cells(1, 7).Value + 1
If Cells(1, 7).Value > 90 Then Cells(1, 7).Value = 1
If Cells(3, 9).Value = Cells(4, 3).Value Then Exit For
Application.CutCopyMode = False
If Cells(1, 7).Value > 90 Then Exit Sub
' Next e
'Next f
Next g
End Sub
Quello che vorrei è che quando i 3 for hanno contemporaneamente che I3 = C4 si deve fermare
la macro e poi ricliccando la macro cerca altri dati fino a che sia g1, sia f1 che e1 completano i
cicli a 90.
Salve