Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

How to select 100 items from a list

I need to select the first 100 items from a list generated from several SELECT lists added.

LIST((SELECT(Destinatarios Fijos[_RowNumber],true)+
SELECT(Destinatarios Importados 1[_RowNumber],true)+
SELECT(Destinatarios Importados 2[_RowNumber],true)+
SELECT(Destinatarios Importados 3[_RowNumber],true)+
SELECT(Destinatarios Importados 4[_RowNumber],true))-
SPLIT(SELECT(Envíos[Destinatarios],[Campaña Id]=[_THISROW].[Campaña Id])))

I understand that I must do it with FILTER () and with INDEX () but I can’t find a way.
Any guidance?

0 3 393
3 REPLIES 3

Will the TOP() function work?

Thank you very much I did not remember that this expression existed!

Phil
Former Googler

As you probably know, you typically use TOP in conjunction with SORT. SORT ensures that the records you want are at the “top” of the list.

Top Labels in this Space