Sort in two-dimensional array in VBA

2

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?

    
asked by anonymous 08.07.2015 / 00:52

0 answers