Forum Discussion
Eduardo_Mata
Jul 24, 2022Copper Contributor
Filter function
I have programmed a formula using the Filter function to bring a short list of items from a large spread sheet and I managed to make it work. But I need to somehow limit the list to a set of rows i...
PeterBartholomew1
Jul 24, 2022Silver Contributor
If you do not have access to TAKE, you could always try a second filter applied to the sorted dataset
= LET(
selected, SORT(FILTER(Table1,Table1[crit]=crit),6,-1),
k, SEQUENCE(ROWS(selected)),
FILTER(selected,k<=5)
)
Eduardo_Mata
Jul 25, 2022Copper Contributor
This formula also help me to achieve the goal. thank you so much for your time and help. have a wonderful day.