Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 73
Default Too Much Chart Data for Excel Col Limits

I have a user who wants to generate a chart from a really large set of data,
too much to fit within the 256 columns available in Excel 2003. (No,
transposing the data won't work either, there's too much in BOTH directions!)

Can anybody suggest a way to handle that? I thought about dumping all the
values into an array variable, but don't know a way to make that the data
source for a chart.
  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 4,393
Default Too Much Chart Data for Excel Col Limits

1) Have you recalled that there is a 32,000 limit on the size of a data
series?
2) Will the chart be readable even with 1,000 data points?
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"LarryP" wrote in message
...
I have a user who wants to generate a chart from a really large set of
data,
too much to fit within the 256 columns available in Excel 2003. (No,
transposing the data won't work either, there's too much in BOTH
directions!)

Can anybody suggest a way to handle that? I thought about dumping all the
values into an array variable, but don't know a way to make that the data
source for a chart.



  #3   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 73
Default Too Much Chart Data for Excel Col Limits

Didn't know 1), thanks for pointing it out.

The line chart they're working with is about progress over time on a
project, with one data point for each week looking into the future. In some
instances they are using a time horizon of several years, so they need 52 * x
columns. the 256 available columns let them go out more or less five years,
but in some instances that's already proving to be insufficient. I would
think ten years/520 columns would do, but let's worst-case it at 20
years/1040 columns. (As far as rows is concerned, I haven't heard that 65535
is a problem for them, but they do sometimes use as much as 30,000 rows or
so.)

As to readability, I hear you, but that's their call. If I give them what
they want and it's ugly, that's on them.

"Bernard Liengme" wrote:

1) Have you recalled that there is a 32,000 limit on the size of a data
series?
2) Will the chart be readable even with 1,000 data points?
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"LarryP" wrote in message
...
I have a user who wants to generate a chart from a really large set of
data,
too much to fit within the 256 columns available in Excel 2003. (No,
transposing the data won't work either, there's too much in BOTH
directions!)

Can anybody suggest a way to handle that? I thought about dumping all the
values into an array variable, but don't know a way to make that the data
source for a chart.




  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Too Much Chart Data for Excel Col Limits

Another limit is 255 series per chart. Therefore, transposing the data will
provide sufficient space for 20 years * 52 weeks.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"LarryP" wrote in message
...
Didn't know 1), thanks for pointing it out.

The line chart they're working with is about progress over time on a
project, with one data point for each week looking into the future. In
some
instances they are using a time horizon of several years, so they need 52
* x
columns. the 256 available columns let them go out more or less five
years,
but in some instances that's already proving to be insufficient. I would
think ten years/520 columns would do, but let's worst-case it at 20
years/1040 columns. (As far as rows is concerned, I haven't heard that
65535
is a problem for them, but they do sometimes use as much as 30,000 rows or
so.)

As to readability, I hear you, but that's their call. If I give them what
they want and it's ugly, that's on them.

"Bernard Liengme" wrote:

1) Have you recalled that there is a 32,000 limit on the size of a data
series?
2) Will the chart be readable even with 1,000 data points?
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"LarryP" wrote in message
...
I have a user who wants to generate a chart from a really large set of
data,
too much to fit within the 256 columns available in Excel 2003. (No,
transposing the data won't work either, there's too much in BOTH
directions!)

Can anybody suggest a way to handle that? I thought about dumping all
the
values into an array variable, but don't know a way to make that the
data
source for a chart.






  #5   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 73
Default Too Much Chart Data for Excel Col Limits

Well, yeah, but transposing would definitely get us into trouble with the
OTHER dimension of their data, which is part numbers -- they virtually ALWAYS
have more than 256 part numbers. That's why my thoughts turned to
calculating and storing all the necessary values in a two-dimension array, if
an array can serve as a chart data source. I know vaguely that a range of
cells can be treated as an array for some purposes, so I was hoping the
reverse is also true: that an array can be treated as a range of cells
that's just too big to fit on a worksheet.

"Jon Peltier" wrote:

Another limit is 255 series per chart. Therefore, transposing the data will
provide sufficient space for 20 years * 52 weeks.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"LarryP" wrote in message
...
Didn't know 1), thanks for pointing it out.

The line chart they're working with is about progress over time on a
project, with one data point for each week looking into the future. In
some
instances they are using a time horizon of several years, so they need 52
* x
columns. the 256 available columns let them go out more or less five
years,
but in some instances that's already proving to be insufficient. I would
think ten years/520 columns would do, but let's worst-case it at 20
years/1040 columns. (As far as rows is concerned, I haven't heard that
65535
is a problem for them, but they do sometimes use as much as 30,000 rows or
so.)

As to readability, I hear you, but that's their call. If I give them what
they want and it's ugly, that's on them.

"Bernard Liengme" wrote:

1) Have you recalled that there is a 32,000 limit on the size of a data
series?
2) Will the chart be readable even with 1,000 data points?
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"LarryP" wrote in message
...
I have a user who wants to generate a chart from a really large set of
data,
too much to fit within the 256 columns available in Excel 2003. (No,
transposing the data won't work either, there's too much in BOTH
directions!)

Can anybody suggest a way to handle that? I thought about dumping all
the
values into an array variable, but don't know a way to make that the
data
source for a chart.








  #6   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Too Much Chart Data for Excel Col Limits

Larry -

Either one or the other items has to stop at 256, since a chart cannot
handle more than 255 series. How are you going to show even a fraction of
256 part numbers legibly? How will you handle the labeling? You shouldn't be
just building what they are asking for, you have to give them what they
need.

It sounds like they need some way to filter out most of the 30k rows (or
whatever) into a manageable subset, and maybe a set of charts, not one big
mega-chart.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"LarryP" wrote in message
...
Well, yeah, but transposing would definitely get us into trouble with the
OTHER dimension of their data, which is part numbers -- they virtually
ALWAYS
have more than 256 part numbers. That's why my thoughts turned to
calculating and storing all the necessary values in a two-dimension array,
if
an array can serve as a chart data source. I know vaguely that a range of
cells can be treated as an array for some purposes, so I was hoping the
reverse is also true: that an array can be treated as a range of cells
that's just too big to fit on a worksheet.

"Jon Peltier" wrote:

Another limit is 255 series per chart. Therefore, transposing the data
will
provide sufficient space for 20 years * 52 weeks.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"LarryP" wrote in message
...
Didn't know 1), thanks for pointing it out.

The line chart they're working with is about progress over time on a
project, with one data point for each week looking into the future. In
some
instances they are using a time horizon of several years, so they need
52
* x
columns. the 256 available columns let them go out more or less five
years,
but in some instances that's already proving to be insufficient. I
would
think ten years/520 columns would do, but let's worst-case it at 20
years/1040 columns. (As far as rows is concerned, I haven't heard that
65535
is a problem for them, but they do sometimes use as much as 30,000 rows
or
so.)

As to readability, I hear you, but that's their call. If I give them
what
they want and it's ugly, that's on them.

"Bernard Liengme" wrote:

1) Have you recalled that there is a 32,000 limit on the size of a
data
series?
2) Will the chart be readable even with 1,000 data points?
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"LarryP" wrote in message
...
I have a user who wants to generate a chart from a really large set
of
data,
too much to fit within the 256 columns available in Excel 2003.
(No,
transposing the data won't work either, there's too much in BOTH
directions!)

Can anybody suggest a way to handle that? I thought about dumping
all
the
values into an array variable, but don't know a way to make that the
data
source for a chart.








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data exceeds chart limits Rebecca Charts and Charting in Excel 2 March 25th 08 12:16 AM
Combo Box Limits Data Entry The Merg Excel Worksheet Functions 1 December 13th 07 05:51 AM
Limits of Pivot chart Daniel Charts and Charting in Excel 1 July 17th 07 08:20 PM
chart with actuals and limits tboat4 Charts and Charting in Excel 1 November 7th 06 05:28 PM
Data Table Input Limits Tom Pye Excel Worksheet Functions 0 March 28th 06 12:10 PM


All times are GMT +1. The time now is 03:12 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"