Posted to microsoft.public.excel.programming
|
|
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
|