You can call the Excel sort function by ActiveX and feed the sort parameters into the method function.
1. Starting with your Automation Refnum to the worksheet, wire up a Method Node->Range.
Wire a string constant of "A1" or any cell within the range to Cell1.
2. Wire the output of Range to a Property Node->CurrentRegion.
This will automatically find the entire block of data to be sorted.
3. Then wire the CurrentRegion output to the Method Node->Sort function.
You can then create a constant for Sort1 of xlDescending and specify the column for Key1 as "A:A".
The date should not be a problem unless the values were forced to be text strings in Excel. In that case you will not get the right results.
Michael
http://www.stitchofclass.
com