The only way I can think of is to merge the two data sets together. It
*might* be possible to do so with a formula, but in any case, you would
have to merge the data sets.
As far as drawing the horizontal lines goes, see the Excel | Charts |
'Straight Lines' page of my web site.

Signature
Regards,
Tushar Mehta, MS MVP -- Excel
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
> I'm hoping to find some help in here:
>
[quoted text clipped - 12 lines]
>
> /Snedker
Hi,
I think I understand what you need - maybe easiest to explain b
example, which you can adapt to your needs.
Suppose you have two rows of data, A1:C1 and A2:C2. Highlight the rang
A1:C2 and hit the chart wizard and select a line chart: you end up wit
chart of two lines, each of three points.
Click on the blue line (the first series) and look in the formula bar
you'll see this:
=SERIES(,,Sheet1!$A$1:$C$1,1)
Replace this with the following line:
=SERIES(,,(Sheet1!$A$1:$C$1,Sheet1!$A$2:$C$2),1)
And there you have a single line of six points.
HTH,
Graha
Tushar Mehta - 28 Nov 2003 11:01 GMT
> Replace this with the following line:
>
> =SERIES(,,(Sheet1!$A$1:$C$1,Sheet1!$A$2:$C$2),1)
>
> And there you have a single line of six points.
No, if I understand correctly, the OP doesn't want A1:C1 then A2:C2.
The OP wants A1, A2, B1, B2, C1, C2... with the distinct possibility
that the data are not in adjacent rows.
[Posted directly to the Usenet newsgroup -- no affiliation with Excel
Forum.]

Signature
Regards,
Tushar Mehta, MS MVP -- Excel
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
> Hi,
>
[quoted text clipped - 21 lines]
>
> ------------------------------------------------