Hi,
I am wondering if anyone out there knows how to sort an Array by it's firsdt column which happens to be a date. I already have some quick sort routines which dont actually work on dates.
Can anyone help me? (Thanks)
Printable View
Hi,
I am wondering if anyone out there knows how to sort an Array by it's firsdt column which happens to be a date. I already have some quick sort routines which dont actually work on dates.
Can anyone help me? (Thanks)
If you already have sorting routines why not convert the date to the format YYYYMMDD and then sort on it.
eg;
Date="01/05/2000"
DateToSort=Format(Date,"yyyymmdd")
------------------
Mark "Buzby" Beeton
VB Developer
[email protected]