View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] paul.robinson@it-tallaght.ie is offline
external usenet poster
 
Posts: 789
Default sort function - from ascending to descending

Hi
try changing the test
If List(i) List(j)
to
If List(i) < List(j)

(untested)
Paul