View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default second biggest in array

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
'<<=============


---
Regards,
Norman


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