Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
pguereca
Contributor
Contributor

Exclude Value form Dimension

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?

1 Reply
lironbaram
Partner - Master III
Partner - Master III

hi

try this

=if(aggr(Rank(Count({<Word-={'Among'}>}WordCounter)),Word)<=70,Word)

or this

=if(aggr({<Word-={'Among'}>}Rank(Count(WordCounter)),Word)<=70,Word)