SORT

Sorts the contents of a range or array.

note

Enter the formula as an array formula.


Sintaxis

SORT(Range [; SortIndex [; SortOrder [; ByCol] ] ])

Intervalo: el intervalo o la matriz que se debe ordenar.

SortIndex: (optional). The number indicating the row or column to sort by.

SortOrder: (optional). A number indicating the desired sort order; 1 for ascending order (default), -1 for descending order.

ByCol: (optional). A logical value indicating the desired sort direction; FALSE to sort by row (default), TRUE to sort by column.

note

Any of the optional arguments can be omitted. An optional argument requires all preceding separators to be present.


Ejemplos

Tenga en cuenta la tabla siguiente

A

B

C

1

Nombre de producto

Sales

Revenue

2

lápiz

20

65

3

bolígrafo

35

85

4

cuaderno

20

190

5

libro

17

180

6

estuche

not

not


Ejemplo con orden ascendente

{=SORT(A2:C6,2,1)}

Sort the range A2:C6 based on the second column in ascending order (Sales).

libro

17

180

lápiz

20

65

cuaderno

20

190

bolígrafo

35

85

estuche

not

not


Example with descending order

{=SORT(A2:C6,3,-1)}

Sort the range A2:C6 based on the third column in descending order (Revenue).

estuche

not

not

cuaderno

20

190

libro

17

180

bolígrafo

35

85

lápiz

20

65


Información técnica

tip

Esta función está disponible desde la versión 24.8 de LibreOffice.


Esta función no forma parte de la norma Formato de Documentos Abierto para Aplicaciones de Oficina (OpenDocument), versión 1.3. Parte 4: formato de fórmulas recalculadas (OpenFormula). El espacio de nombres es

COM.MICROSOFT.SORT

¡Necesitamos su ayuda!