Sub TriTableau2D()
Dim Tab_Interventions()
Tab_Interventions = [B1:Y63].Value ' Tableau 2D 'B1 est la Ligne d’entêtes
Tri Tab_Interventions(), 1, LBound(Tab_Interventions, 1) + 1, UBound(Tab_Interventions, 1) 'd'ou le +1 ligne d’entête non prise en compte lors du tri ?
[AA1].Resize(UBound(Tab_Interventions, 1), UBound(Tab_Interventions, 2)).Value = Tab_Interventions '
End Sub