I have the following data values in two columns in my Excel spreadsheet:
Location Quantity
Site 001 12
Site 001 21
Site 001 34
Site 002 12
Site 002 11
Site 003 23
Site 003 24
Site 003 43
Site 003 12
These come from a SQL database and are constantly changing.
I'd like to create a bar chart that shows 'Location' on the X axis and 'Quantity' on the Y axis, with the associated total values GROUPED BY LOCATION. However I can't figure out how to make the chart group by location i.e.
Location Quantity
Site 001 67
Site 002 23
Site 003 102
Is there a way of doing this within the chart without separately calculating the total for each location in a separate column?
Thanks for any help!
Location Quantity
Site 001 12
Site 001 21
Site 001 34
Site 002 12
Site 002 11
Site 003 23
Site 003 24
Site 003 43
Site 003 12
These come from a SQL database and are constantly changing.
I'd like to create a bar chart that shows 'Location' on the X axis and 'Quantity' on the Y axis, with the associated total values GROUPED BY LOCATION. However I can't figure out how to make the chart group by location i.e.
Location Quantity
Site 001 67
Site 002 23
Site 003 102
Is there a way of doing this within the chart without separately calculating the total for each location in a separate column?
Thanks for any help!