View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Charlotte E.[_3_] Charlotte E.[_3_] is offline
external usenet poster
 
Posts: 160
Default Read into array and sort?

Hi,


I have a number of informations, which is shared among spreadsheets on
the same computer.

For easy exchange I want to save these with SaveSetting, and then
re-obtain with Getsetting.

But I need to have the found data sorted after obtaining them, and was
wondering how to do this?

But how?
How to sort that array after reading the data?

Dim FD(100) As Variant
For Counter = 1 to 100
FD(Counter) = GetSetting(...)
Next

And now how to sort???


Thanks in advance...

CE