A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Sub Test()
Dim r As Range
Set r = Application.InputBox("Select a cell in the column", Type:=8)
Set r = Range(Cells(5, r.Column), Cells(Rows.Count, r.Column).End(xlUp))
With Range(Cells(5, "ZZ"), Cells(Cells(Rows.Count, r.Column).End(xlUp).Row, "ZZ"))
.Formula = "=VLOOKUP(" & r.Cells(1).Address(False, False) & ",ISO,2,False)"
r.Value = .Value
.Clear
End With
End Sub