I have a two-dimensional dynamic array :
Birth dates in the first dimension (column) and names in the second dimension:
Example:
MyArray (0,0)="01/05/1990"
MyArray (1,0) = "Luisa Silva"
I would like a sort method that I could use the first column (date) as a parameter, but when it was moved bring it along the position of the second column.
Does anyone have any ideas?