vba中的:
Dim imax%, irow%
imax = Application.WorksheetFunction.Max(Range("A:A"))
Dim wsheet As Excel.Worksheet
Set wsheet = ActiveSheet
Dim c As Range
Set c = wsheet.Range("A:A").Find(imax, LookIn:=xlValues)
If Not c Is Nothing Then
irow = c.Row
End If
MsgBox wsheet.Cells(irow, 5).Value