Search code examples
excelchartsexcel-2013excel-charts

How do I create chart in Excel 2013 based on one column


I typically use Google Sheets and am very familiar with how to do this, but I'm forced to use Excel 2013 for a job. Here's what I need to do and I'm hoping someone can help.

I have a worksheet with column "I" with the header "TEAM MEMBER" which gets populated with new members as I add information into the rows below.

I need to create a bar chart which displays each team member on the bottom and shows the number of requests assigned to that person. I know it would be easy to simply create a formula to count the number of times a certain person is listed and chart it that way, but that doesn't allow for me to simply type a new member into the column and the chart automatically start counting the requests.

Here's an example of the Google Sheets chart I very easily made. Google Sheets example

I hope I've made my request clear enough; if not, please let me know and thanks in advance!


Solution

  • You can use a pivot chart for your graph and use a table for you data. This way the range reference will be the table name and not a range and will adapt when you add a new entry.

    In the pivot table you can set your column as Axis and count of that column for values

    your table should look like:

    enter image description here

    and the pivot chart would give you:

    enter image description here

    which is pretty similar to what you posted Hope this helps