View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] gastoncortess@gmail.com is offline
external usenet poster
 
Posts: 12
Default Get the max number from a collection

I find this way to do it

iva=col(1)

For i = 1 To col.Count
On Error GoTo Fin
If ival col(i + 1) Then
ival = col(i + 1)
End If
Next i

wrote:
Hi Fellows

How can I get the Max number from a collection thata has only numbers

Thanks
GC