Hi!

Is it possible to sort an array of struct?

What i want to do is to sort the struct based on the fields and in ascending order.
Like an index

Code:
struct myStruct
    String Name
    String Assay
    String WellNo
end_struct

procedure jada
   myStruct[] instrumentData

   send something to sort instrumentData
end_procedure