1

I have this set analysis sentence:

=if(aggr(Rank(Count(WordCounter)),Word)<=70,Word)

I have a request to remove "Among" from the Word data.

Any suggestion?

Pablo Gûereca
  • 725
  • 1
  • 9
  • 23

2 Answers2

1

This is the solution optimal: =if(aggr(Rank(Count {<Word-={'Among'}>}(WordCounter)),Word)<=70,Word)

Distopic
  • 717
  • 3
  • 16
  • 31
-1

Try :

=if(aggr(Rank(Count(WordCounter)),if(Word <> 'Among', Word))<=70,Word)
BrunoMarques
  • 557
  • 2
  • 11