Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
How can I create "Name" that will enable a dynamic stock chart in Excel 2003.
I have been able to create single series dynamic charts using "Name", but no luck in creating a dynamic stock chart. |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
1. The hard way: Define a name for dates and one name for each series in the
chart (Open, High, Low, Close). Create the chart using static data, then replace the static addresses with the names, either in the series formulas or in the Source Data Series dialog. 2. The easy way: Put Date, Open, High, Low, Close into a table. Go to Data menu List Create List. Make your chart based on this list. As the list expands, any formulas (including chart series formulas) update to include all rows in the list. - Jon ------- Jon Peltier, Microsoft Excel MVP Peltier Technical Services, Inc. http://PeltierTech.com/WordPress/ _______ "Nick Krill" wrote in message ... How can I create "Name" that will enable a dynamic stock chart in Excel 2003. I have been able to create single series dynamic charts using "Name", but no luck in creating a dynamic stock chart. |
#3
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
My database of stock prices contracts as well as expands. I haven't been able
to get either method to adjust it's range to fit the number of data rows. Any ideas? "Jon Peltier" wrote: 1. The hard way: Define a name for dates and one name for each series in the chart (Open, High, Low, Close). Create the chart using static data, then replace the static addresses with the names, either in the series formulas or in the Source Data Series dialog. 2. The easy way: Put Date, Open, High, Low, Close into a table. Go to Data menu List Create List. Make your chart based on this list. As the list expands, any formulas (including chart series formulas) update to include all rows in the list. - Jon ------- Jon Peltier, Microsoft Excel MVP Peltier Technical Services, Inc. http://PeltierTech.com/WordPress/ _______ "Nick Krill" wrote in message ... How can I create "Name" that will enable a dynamic stock chart in Excel 2003. I have been able to create single series dynamic charts using "Name", but no luck in creating a dynamic stock chart. |
#4
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
As Jon noted you can use range names to automatically expand or contract your
data set. The article below explain how: http://office.microsoft.com/en-us/ex...098011033.aspx From the article, the series formulas to expand or contract your data set look like this: Date =OFFSET(Sheet1!$A$1,1,0,COUNTA($A:$A)-1) Price =OFFSET(Sheet1!$B$1,1,0,COUNTA($B:$B)-1) John Walkenbach also walks through the steps: http://spreadsheetpage.com/index.php...er_new_dat a/ These articles might help too: http://pubs.logicalexpressions.com/P...cle.asp?ID=518 http://pubs.logicalexpressions.com/P...cle.asp?ID=535 -- John Mansfield http://www.cellmatrix.net "Nick Krill" wrote: My database of stock prices contracts as well as expands. I haven't been able to get either method to adjust it's range to fit the number of data rows. Any ideas? "Jon Peltier" wrote: 1. The hard way: Define a name for dates and one name for each series in the chart (Open, High, Low, Close). Create the chart using static data, then replace the static addresses with the names, either in the series formulas or in the Source Data Series dialog. 2. The easy way: Put Date, Open, High, Low, Close into a table. Go to Data menu List Create List. Make your chart based on this list. As the list expands, any formulas (including chart series formulas) update to include all rows in the list. - Jon ------- Jon Peltier, Microsoft Excel MVP Peltier Technical Services, Inc. http://PeltierTech.com/WordPress/ _______ "Nick Krill" wrote in message ... How can I create "Name" that will enable a dynamic stock chart in Excel 2003. I have been able to create single series dynamic charts using "Name", but no luck in creating a dynamic stock chart. |
#5
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Those methods work well with single line charts - I've been using them for
some time now, but I haven't been able to get them to work with a stock chart? "John Mansfield" wrote: As Jon noted you can use range names to automatically expand or contract your data set. The article below explain how: http://office.microsoft.com/en-us/ex...098011033.aspx From the article, the series formulas to expand or contract your data set look like this: Date =OFFSET(Sheet1!$A$1,1,0,COUNTA($A:$A)-1) Price =OFFSET(Sheet1!$B$1,1,0,COUNTA($B:$B)-1) John Walkenbach also walks through the steps: http://spreadsheetpage.com/index.php...er_new_dat a/ These articles might help too: http://pubs.logicalexpressions.com/P...cle.asp?ID=518 http://pubs.logicalexpressions.com/P...cle.asp?ID=535 -- John Mansfield http://www.cellmatrix.net "Nick Krill" wrote: My database of stock prices contracts as well as expands. I haven't been able to get either method to adjust it's range to fit the number of data rows. Any ideas? "Jon Peltier" wrote: 1. The hard way: Define a name for dates and one name for each series in the chart (Open, High, Low, Close). Create the chart using static data, then replace the static addresses with the names, either in the series formulas or in the Source Data Series dialog. 2. The easy way: Put Date, Open, High, Low, Close into a table. Go to Data menu List Create List. Make your chart based on this list. As the list expands, any formulas (including chart series formulas) update to include all rows in the list. - Jon ------- Jon Peltier, Microsoft Excel MVP Peltier Technical Services, Inc. http://PeltierTech.com/WordPress/ _______ "Nick Krill" wrote in message ... How can I create "Name" that will enable a dynamic stock chart in Excel 2003. I have been able to create single series dynamic charts using "Name", but no luck in creating a dynamic stock chart. |
#6
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
These methods do work for stock charts and for any other charts with
multiple series. Is it a stock chart with HLC or OHLC? Put the data into a List and plot using the list. Your descriptions don't explain what isn't working, or how you set up the list or names. - Jon ------- Jon Peltier, Microsoft Excel MVP Peltier Technical Services, Inc. http://PeltierTech.com/WordPress/ _______ "Nick Krill" wrote in message ... Those methods work well with single line charts - I've been using them for some time now, but I haven't been able to get them to work with a stock chart? "John Mansfield" wrote: As Jon noted you can use range names to automatically expand or contract your data set. The article below explain how: http://office.microsoft.com/en-us/ex...098011033.aspx From the article, the series formulas to expand or contract your data set look like this: Date =OFFSET(Sheet1!$A$1,1,0,COUNTA($A:$A)-1) Price =OFFSET(Sheet1!$B$1,1,0,COUNTA($B:$B)-1) John Walkenbach also walks through the steps: http://spreadsheetpage.com/index.php...er_new_dat a/ These articles might help too: http://pubs.logicalexpressions.com/P...cle.asp?ID=518 http://pubs.logicalexpressions.com/P...cle.asp?ID=535 -- John Mansfield http://www.cellmatrix.net "Nick Krill" wrote: My database of stock prices contracts as well as expands. I haven't been able to get either method to adjust it's range to fit the number of data rows. Any ideas? "Jon Peltier" wrote: 1. The hard way: Define a name for dates and one name for each series in the chart (Open, High, Low, Close). Create the chart using static data, then replace the static addresses with the names, either in the series formulas or in the Source Data Series dialog. 2. The easy way: Put Date, Open, High, Low, Close into a table. Go to Data menu List Create List. Make your chart based on this list. As the list expands, any formulas (including chart series formulas) update to include all rows in the list. - Jon ------- Jon Peltier, Microsoft Excel MVP Peltier Technical Services, Inc. http://PeltierTech.com/WordPress/ _______ "Nick Krill" wrote in message ... How can I create "Name" that will enable a dynamic stock chart in Excel 2003. I have been able to create single series dynamic charts using "Name", but no luck in creating a dynamic stock chart. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can a stock chart be combined with an line chart? | Charts and Charting in Excel | |||
Dynamic chart pasted to a new workbook in report can't be dynamic | Charts and Charting in Excel | |||
Combination of stock chart and line chart | Charts and Charting in Excel | |||
How do I interpret a stock chart ? | Excel Discussion (Misc queries) | |||
How to add a line to a stock chart | Charts and Charting in Excel |