Hi Experts,
I am sure this has been solved before, but I just cannot seem to figure it out on my own, nor can I find exactly what I am looking for in the forum.
I am trying to make a simple dashboard with a section that shows the names, number of occurrences, and a sum of values associated with the top 5 individuals in a range. I am trying to set up a filter by date range as well.
I have my data in a table, with one column being the individual's name, another being the date of entry, and another being a $ value for that particular entry Example:
[pre]
[/pre]
Please Help
Thanks!
I am sure this has been solved before, but I just cannot seem to figure it out on my own, nor can I find exactly what I am looking for in the forum.
I am trying to make a simple dashboard with a section that shows the names, number of occurrences, and a sum of values associated with the top 5 individuals in a range. I am trying to set up a filter by date range as well.
I have my data in a table, with one column being the individual's name, another being the date of entry, and another being a $ value for that particular entry Example:
[pre]
Code:
Name Date Total Amount
Michael Keaton 1/2/12 $ 40000
Christian Bale 2/5/12 150000
Adam West 2/6/12 10000
Val Kilmer 3/8/12 30000
Michael Keaton 3/10/12 60000
Michael Keaton 3/11/12 10000
I am trying to build a formula that, within a date range chosen by the user, counts each name's occurrence in the range, finds the top 5, and sums the values associated with those top 5. In addition, I plan to modify the formula to find the top 5 summed values within the range and output the names associated (within the date range). I have tried to combine Large, Sumproduct, Rank and various other functions, but cannot get it right. It would look something like this (simplified given example above):
User selects date range: start = 1/1/12; end = 4/1/12
Most frequent Count Value
Michael Keaton 3 $110000
Highest Value Count Value
Christian Bale 1 $150000
Please Help
Thanks!