
Cells(i, 3) = fin.Offset(0, 2) |
(*1)
For i = 37 To Range("d" & Rows.Count).End(xlUp).Row
oppure
For i = 37 To Range("d37").End(xlDown).Row
(*2)
what:=Cells(i, 4)
(*3)
Cells(i, 5) = fin.Offset(0, 2) |
Application.WorksheetFunction.VLookup(............) |
Public Function Cerca_Vert(Valore, Matrice_Tabella, Indice, Optional Intervallo)
Cerca_Vert = Matrice_Tabella.Columns(1).Find(Valore, , xlValues, xlWhole).Offset(0, Indice - 1)
End Function
|
