Sub fillV()
Dim CellR As Range
Set RangeN1 = ActiveSheet.Range("F3:F6") 'defines the input (value to search for in the first column of the table_array )
Set RangeN2 = Sheets("Sheet1").Range("C:H") ' defines the table_array
Const ColumnI = "G" 'defines the letter of the column in which Vlookup results will be placed
For Each CellR In RangeN1
n = CellR.Row
Cells(n, ColumnI).Value = WorksheetFunction.VLookup(CellR.Value, RangeN2, 6, False)
Next
End Sub