JET_Fusion
New Member
- Joined
- Mar 10, 2009
- Messages
- 5
Error: “The data range is too complex to be displayed. If a new range is selected, it will replace all of the series in the Series panel.”<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
<o></o>
Problem: The graph is blank when the data set includes empty and non-empty data. If I reduce the data set to include cells with only non-empty value, the graph works. <o></o>
How can this possibly be, any suggestions?<o></o>
<o></o>
<o></o>
Graph Type: X-Y scatter with connected dots<o></o>
x-axis is a single column range with 300 entries, values are non-negative rational numbers or empty<o></o>
y-axis is a single column range with 300 entries, values are date (m/d/y) or empty<o></o>
<o></o>
Each column contains formulas <o></o>
Each row represents a data point, <o></o>
each data point begins with an empty value, <o></o>
each the data set grows by one or two a day<o></o>
<o></o>
********************<o></o>
What I’m doing.<o></o>
<o></o>
I have a data entry list that is update at least once a day. This data entry includes three parts (1) a date, (2) a calculated value, and (3) entered value. The date is used for both of the other data sets. Data entry requires a date, but not both of the other. As a consequence, I am using a reordering technique to align the data into consecutive rows. The graph is based upon the column with the consecutive rows. <o></o>
<o></o>
[In other words: data entry into columns A,B,C; column D to determine entry value either empty or non-empty (1,0); column E is sequential order of desired rows with corresponding empty rows adding zero to the count; column F counts only the non-empty rows, thus removing repeated count numbers; column G list of sequentially numbered columns; column H contains OFFSET() formula with embedded MATCH() that compares sequential ordered list to find desired data point for desired position and then offsets to the desired point. This formula also contains a single IF/THEN and the ISERROR() to display an empty cell with the list of non-empty cells in the column. Here’s an example of the formula.<o></o>
<o></o>
=IF(ISERROR(OFFSET($FK$7:$FK$302,MATCH(BE303,$BD$6:$BD$302,0)-1,0,1,1))=TRUE,"",OFFSET($FK$7:$FK$302,MATCH(BE303,$BD$6:$BD$302,0)-1,0,1,1))<o></o>
<o></o>
<o></o>
The result works beautifully, except for the graph. I wanted to take advantage of the fact that a X-Y Scatter graph won’t display empty cells in the graph string, so that as the data set grew so did the graph. <o></o>
---JET_Fusion
<o></o>
Problem: The graph is blank when the data set includes empty and non-empty data. If I reduce the data set to include cells with only non-empty value, the graph works. <o></o>
How can this possibly be, any suggestions?<o></o>
<o></o>
<o></o>
Graph Type: X-Y scatter with connected dots<o></o>
x-axis is a single column range with 300 entries, values are non-negative rational numbers or empty<o></o>
y-axis is a single column range with 300 entries, values are date (m/d/y) or empty<o></o>
<o></o>
Each column contains formulas <o></o>
Each row represents a data point, <o></o>
each data point begins with an empty value, <o></o>
each the data set grows by one or two a day<o></o>
<o></o>
********************<o></o>
What I’m doing.<o></o>
<o></o>
I have a data entry list that is update at least once a day. This data entry includes three parts (1) a date, (2) a calculated value, and (3) entered value. The date is used for both of the other data sets. Data entry requires a date, but not both of the other. As a consequence, I am using a reordering technique to align the data into consecutive rows. The graph is based upon the column with the consecutive rows. <o></o>
<o></o>
[In other words: data entry into columns A,B,C; column D to determine entry value either empty or non-empty (1,0); column E is sequential order of desired rows with corresponding empty rows adding zero to the count; column F counts only the non-empty rows, thus removing repeated count numbers; column G list of sequentially numbered columns; column H contains OFFSET() formula with embedded MATCH() that compares sequential ordered list to find desired data point for desired position and then offsets to the desired point. This formula also contains a single IF/THEN and the ISERROR() to display an empty cell with the list of non-empty cells in the column. Here’s an example of the formula.<o></o>
<o></o>
=IF(ISERROR(OFFSET($FK$7:$FK$302,MATCH(BE303,$BD$6:$BD$302,0)-1,0,1,1))=TRUE,"",OFFSET($FK$7:$FK$302,MATCH(BE303,$BD$6:$BD$302,0)-1,0,1,1))<o></o>
<o></o>
<o></o>
The result works beautifully, except for the graph. I wanted to take advantage of the fact that a X-Y Scatter graph won’t display empty cells in the graph string, so that as the data set grew so did the graph. <o></o>
---JET_Fusion