Recabamos en diferentes espacios y así regalarte la solución para tu inquietud, en caso de alguna inquietud déjanos la duda y responderemos porque estamos para servirte.
Ejemplo 1: vba ordena los datos Z a A
Sub sbSortDataInExcel()'Delcaring the strDataRange as range store the target range to sortDim strDataRange As Range
'Delcaring the keyRange as range store the Sort key range to sort byDim keyRange As Range
'Assigning the target sort Range to strDataRangeSet strDataRange = Range("A1:D10")'Assigning the sort key Range to keyRangeSet keyRange = Range("A1")'Sorting the data using range objects and Sort method
strDataRange.Sort Key1:=keyRange, Order1:=xlAscending
EndSub
Ejemplo 2: vba ordena los datos Z a A
Sub sb_VBA_Sort_Data_Ascending()
Range("A1:D10").Sort _
Key1:=Range("A1"), Order1:=xlAscending
EndSub
Te invitamos a añadir valor a nuestro contenido informacional colaborando tu experiencia en las aclaraciones.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)