Forum Discussion
Guilherme_Garibaldi
Oct 06, 2021Copper Contributor
office 365 formula classificar
Boa noite a todos, alguém sabe como fazer com que a formula classificar apenas traga os 3 ou 4 primeiros informações como se fosse um ranking. Quando faz a formula classificar em uma tabela de 400 li...
- Oct 12, 2021Obrigado pela ajuda, funcionou, apenas preciso me entender com na fórmula, mas funciona.
byundt
Oct 07, 2021Brass Contributor
I assume you are using the SORT function to return your results. If so, consider wrapping it with the INDEX function.
The following formula returns the first four values returned by SORT in a column. If you want them returned as a row, use commas instead of semicolons in the array constant {1;2;3;4}. Formula 3 using INDICE was produced using the Functions Translator Add-in using my USA formula as input and Portuguese as the output--I hope it has the list separators correct.
=INDEX(SORT(A2:A400,,1),{1;2;3;4})
=ÍNDICE(SORT(A2:A400;;1);{1;2;3;4})
Guilherme_Garibaldi
Oct 07, 2021Copper Contributor
Estou usando a formula classificarpor.