Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Showing the data that with the higest count

Dear specialist.

I got data of played songs and artists.

Here is what I got:

Fields:

UTS           (=song ID)

Artists

Month

Dimension : Month

Expressions :

1. Count (Distinct UTS)

2. MAX(aggr((Count (Distinct UTS)),Artist,Month))

The first expression counts the number of song

The second expression gives the count of the songs of the Artist with the most songs, that month.

fe

                    1                         2                         3

Jan          2362                         34                    U2

Feb          3335                        78                    Prince

...

So in this example U2 is played the most in Januari (34 times) and Prince (78 times) in Februari.

What I want is an expression that returns (3) the name of the artist that has the highest count of songs in the straight/pivot table.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try something like

=FirstSortedValue(Artist, aggr(-count(distinct UTS),Artist, Month))

View solution in original post

4 Replies
swuehl
MVP
MVP

Try something like

=FirstSortedValue(Artist, aggr(-count(distinct UTS),Artist, Month))

Anonymous
Not applicable
Author

Thanks but that returns nothing...

swuehl
MVP
MVP

It does work at my side, please check attached.

Maybe your setting is different from what you described or I understood you have?

Anonymous
Not applicable
Author

Sorry my mistake! Typo 🙂

Works perfect. Thanks