する必要があり、説明がコメントとしてコード内にある:
Option Explicit
Sub SelectSpecial()
Dim Rng2 As Range, Rng As Range
Dim MinVal, LRow As Variant
' modify "Sheet1" to your sheet's name
With Worksheets("Sheet1")
Set Rng2 = .Range("AA9")
' set another range that starts 1 row below, and is 3 rows
Set Rng = Rng2.Offset(1, 0).Resize(3, 1)
' find minimum value in Range of cells
MinVal = WorksheetFunction.Min(Rng)
' find the row location of the Minimum values using the MATCH function
LRow = Application.Match(MinVal, Rng, 0)
' display reult value found, and cell address
MsgBox "Minimum Value is " & MinVal & " , located at cell " & .Range("AA" & Rng2.Row + LRow).Address
End With
End Sub
'Selection.Offset()'を見てください。 –