How can I best visualize performance data by tenure?
March 7, 2009 12:31 PM Subscribe
Excel charting help: Help me analyze sales stats based on salesperson tenure.
I have an Excel file with the names, start dates, sales volumes, margins, and average unit selling prices for a sales team of 1,300 people dating as far back as 11 years.
I want to understand the performance differences between subgroups with different tenures (for example, how much better or worse on average do those with 1 -1.5 years experience perform than those with 2-2.5 years experience?).
I would really like to represent this data graphically in a chart. It seems like a histogram or a scatter plot with a trend line makes the most sense, but I am not a statistician and would describe my charting capability as “just above basic”. What is the best way to represent this stuff graphically and how do I build that chart?
Should I create a “sales performance index” of the sales metrics so that I can simplify the data into three variables: name, start date, and sales performance index? If so, how would you recommend creating such an index?
posted by samuelad to computers & internet (6 answers total) 1 user marked this as a favorite
=ROUND(2*(NOW() - C2)/365,0)/2
This will group everyone into categories of 0, 0.5, 1, 1.5, etc. years of experience.
Second thing would be to put the data into a pivot table to figure out what trends you can identify. I know that you want to create an index, but you don't know what the index should be until you've explored the data. I'm guessing that you haven't used pivot tables before, but they are perfect for this type of data exploration.
I didn't really answer your question, but that's where I would start.
posted by nyc_consultant at 1:24 PM on March 7, 2009