I have a large amount of data stored in a table that is used to update about 8 charts (through named ranges). Each chart has the date and ID as the x-axis with a particular parameter being charted. Each column of the table has its own named range which allows this to work and for the charts to update as more data is added.
This all works great, but now the end user is requesting that one of the series on the charts is broken down into some other series. For example my data could be:
[TABLE="width: 500, align: center"]
<tbody>[TR]
[TD]Date[/TD]
[TD]ID[/TD]
[TD]Source[/TD]
[TD]Parameter 1[/TD]
[TD]Parameter 2[/TD]
[TD]Parameter 3[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]11[/TD]
[TD]Boston[/TD]
[TD]12[/TD]
[TD]55[/TD]
[TD]5.25[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]12[/TD]
[TD]New York[/TD]
[TD]10[/TD]
[TD]53[/TD]
[TD]5.05[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]13[/TD]
[TD]Boston[/TD]
[TD]10.2[/TD]
[TD]57[/TD]
[TD]5.16[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]14[/TD]
[TD]Albany[/TD]
[TD]12[/TD]
[TD]54[/TD]
[TD]4.95[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]15[/TD]
[TD]Vermont[/TD]
[TD]15[/TD]
[TD]56[/TD]
[TD]5.62[/TD]
[/TR]
[TR]
[TD]7/22/15[/TD]
[TD]11[/TD]
[TD]Albany[/TD]
[TD]14.3[/TD]
[TD]53[/TD]
[TD]5.34[/TD]
[/TR]
[TR]
[TD]7/22/15[/TD]
[TD]12[/TD]
[TD]New York[/TD]
[TD]11.2[/TD]
[TD]55[/TD]
[TD]5.80[/TD]
[/TR]
</tbody>[/TABLE]
Currently, all this data is being charted as one series, but now I would like to have different series for each of the sources. Since there is so much data, I would really rather not have to sort it and manually edit the source data for each of the charts as this would be very time consuming. Does anyone have any solutions on how to separate the named range based on the value in a particular column?
To add a visual of the chart I am trying to edit:
The table above is a simplified version of the data. The charts themselves include data from multiple worksheets, but the series I would like to add would be a breakdown of the Cities series shown above.
Any and all help is appreciated.
This all works great, but now the end user is requesting that one of the series on the charts is broken down into some other series. For example my data could be:
[TABLE="width: 500, align: center"]
<tbody>[TR]
[TD]Date[/TD]
[TD]ID[/TD]
[TD]Source[/TD]
[TD]Parameter 1[/TD]
[TD]Parameter 2[/TD]
[TD]Parameter 3[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]11[/TD]
[TD]Boston[/TD]
[TD]12[/TD]
[TD]55[/TD]
[TD]5.25[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]12[/TD]
[TD]New York[/TD]
[TD]10[/TD]
[TD]53[/TD]
[TD]5.05[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]13[/TD]
[TD]Boston[/TD]
[TD]10.2[/TD]
[TD]57[/TD]
[TD]5.16[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]14[/TD]
[TD]Albany[/TD]
[TD]12[/TD]
[TD]54[/TD]
[TD]4.95[/TD]
[/TR]
[TR]
[TD]7/21/15[/TD]
[TD]15[/TD]
[TD]Vermont[/TD]
[TD]15[/TD]
[TD]56[/TD]
[TD]5.62[/TD]
[/TR]
[TR]
[TD]7/22/15[/TD]
[TD]11[/TD]
[TD]Albany[/TD]
[TD]14.3[/TD]
[TD]53[/TD]
[TD]5.34[/TD]
[/TR]
[TR]
[TD]7/22/15[/TD]
[TD]12[/TD]
[TD]New York[/TD]
[TD]11.2[/TD]
[TD]55[/TD]
[TD]5.80[/TD]
[/TR]
</tbody>[/TABLE]
Currently, all this data is being charted as one series, but now I would like to have different series for each of the sources. Since there is so much data, I would really rather not have to sort it and manually edit the source data for each of the charts as this would be very time consuming. Does anyone have any solutions on how to separate the named range based on the value in a particular column?
To add a visual of the chart I am trying to edit:
The table above is a simplified version of the data. The charts themselves include data from multiple worksheets, but the series I would like to add would be a breakdown of the Cities series shown above.
Any and all help is appreciated.
Last edited: