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?
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?
This is the solution optimal:
=if(aggr(Rank(Count {<Word-={'Among'}>}(WordCounter)),Word)<=70,Word)
Try :
=if(aggr(Rank(Count(WordCounter)),if(Word <> 'Among', Word))<=70,Word)