
Sub Trova()
With ActiveWorksheet
Set a = Cells.Find("0600")
a.Select
Cells.FindNext (a)
End With
MsgBox a.Address
End Sub |
Sub Trova() For Each cell In ActiveSheet.UsedRange If cell = "Inserisci il Valore da ricercare QUI" Then MsgBox cell.Address(RowAbsolute:=False, ColumnAbsolute:=False) Next End Sub |
