second biggest in array

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi! i have any array with numbers and i want to get the second biggest number
in the array. how can i do this?
 
Hi Arne,

Try something like:

'=============>>
Public Sub Tester()
Dim arr As Variant
Dim Res As Double

arr = Range("A1:A100").Value

Res = Application.Large(arr, 2)
MsgBox Res
End Sub
'<<=============
 
Back
Top