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

Top 10 sales in text and Gauge

Hi all

I'm currently making a performance dashboard for our Sales department, and for that reason I'm trying to make a top 10 chart of sales people.

There is already a lot of other people who have asked similar questions, however I haven't been able to find the answer for my little project

What I'm trying to is to have 10 text boxes and 10 gauge charts, where each pair is showing 1 of the top 10 salespersons.

Please se attached example.

Is that possible?

Regards

Stefan

19 Replies
Anonymous
Not applicable
Author

This is basically what I think the expression should look like to achieve what i want.


=Num(Max(TOTAL Aggr(Sum(B),A),2) /Aggr(Sum(C), A),'#0,0 %'


However it doesn't seem to work.

sunny_talwar

What is the expected output you are envisioning here?

Anonymous
Not applicable
Author

The percentage is was I'm trying to achieve.

Udklip.JPG

antoniotiman
Master III
Master III

Try this

=Num(Aggr(Max(TOTAL Aggr(Sum(B),A),2)/Sum(If(A=FirstSortedValue(TOTAL A,-Aggr(Sum(B),A),2),C)),A),'#0,0 %') 

Anonymous
Not applicable
Author

I need C to be some kind of expression so I can include limitations.

Sum( {< Region = {'1}' >} C)

sunny_talwar

Like this?

Capture.PNG

antoniotiman
Master III
Master III

Replace C with Your Expression.

There are no Region Fields in Your Attachment.

Anonymous
Not applicable
Author

Yes exactly!

It seems to be doing the Job!

Thanks so much!

Anonymous
Not applicable
Author

Thanks for all the help Antonio

antoniotiman
Master III
Master III

Like this

=Num(Aggr(Max({< Region = {'1}' >} TOTAL Aggr(Sum({< Region = {'1}' >} B),A),2)/Sum({< Region = {'1}' >} If(A=FirstSortedValue({< Region = {'1}' >} TOTAL A,-Aggr(Sum({< Region = {'1}' >}B),A),2),C)),A),'#0,0 %')