Excel 2010: Create Graph From List

5,861

I would first create a table that calculates the data you need to display - with the given information I'm assuming this will be a list of the categories, along with the number of times each one appears in the data.

The easiest way to do this is via a PivotTable and Chart.

Otherwise, you can generate one yourself with a simple bit of fomula work - something like the below will total up the instances of each category (assuming the list is in col E on OtherSheet - adjust as required), which you should easily be able to build a pie chart from.

    A               B
1   ham             =COUNTIF(OtherSheet!E:E,A1)
2   cheese          =COUNTIF(OtherSheet!E:E,A2)
.
.
Share:
5,861

Related videos on Youtube

Mr Shoubs
Author by

Mr Shoubs

Hello, A Software Developer for BTC Solutions, spend my day keeping a shipload of pirates in order. http://uk.linkedin.com/pub/daniel-shoubridge/13/338/470/

Updated on September 17, 2022

Comments

  • Mr Shoubs
    Mr Shoubs over 1 year

    I have created a drop down list for use in each row (for the purpose of categorising). I'd like to graph the selected data (i.e the column of drop down lists) into a graph, probably a pie chart.

    If I set the column as the data source to the graph it puts the selected values into the title region.

    Can someone provide me with a link to a web page on how to do this?

  • Mr Shoubs
    Mr Shoubs over 13 years
    Spot on. Thanks - went for second option.