home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / os / mswindo / apps / 7673 < prev    next >
Encoding:
Text File  |  1993-01-28  |  1.7 KB  |  43 lines

  1. Newsgroups: comp.os.ms-windows.apps
  2. Path: sparky!uunet!microsoft!hexnut!johno
  3. From: johno@microsoft.com (John O'Neill)
  4. Subject: Re: HELP:Excel 4.0 Graphing Dilemna
  5. Message-ID: <1993Jan27.055516.22933@microsoft.com>
  6. Date: 27 Jan 93 05:55:16 GMT
  7. Organization: Microsoft Corporation
  8. References: <1993Jan25.190433.22024@news.columbia.edu>
  9. Distribution: usa
  10. Lines: 31
  11.  
  12. In article <1993Jan25.190433.22024@news.columbia.edu> kra@cunixa.cc.columbia.edu (Kenneth R Aron) writes:
  13. >Hi.
  14. >I'm running Excel 4.0 and have a problem w.r.t. graphing.  I have
  15. >1000 data points to plot arranged in five 200-entry columns.  Is
  16. >there a way to make Excel go from #200 to #201, and not make the
  17. >2nd column into another field?  I've thumbed the book and can't
  18. >find the answer.  I >>really<< don't want to have to cut and
  19. >paste so that all thousand pts. are in one column!
  20. >
  21. >Thanks,
  22. >Ken
  23. >Kenneth R. Aron                 NYS EMT-Defibrillation            | |  / /
  24. >kra@cunixa.cc.columbia.edu      Columbia Area Volunteer Ambulance | |/ / 
  25. >                                Columbia University, NYC          | |\ \
  26. >"EMTs do it with patience"                                        | |  \ \
  27.  
  28. The easiest way is to select the first 200-entry column and create the chart.
  29. Now select the one series in the chart.  In the formula bar, you'll see:
  30.  
  31.   =SERIES(,,Sheet1!$A$1:$A$200,1)
  32.  
  33. or something similar to that.  Change it to the following:
  34.  
  35.   =SERIES(,,(Sheet1!$A$1:$A$200,Sheet1!$B$1:$B$200,Sheet1!$C$1:$C$200,
  36.   Sheet1!$D$1:$D$200,Sheet1!$E$1:$E$200),1)
  37.  
  38. Note the extra parentheses.  This makes the series data come from a
  39. discontinuous selection that happens to be five adjacent columns.
  40.  
  41. Hope this helps...
  42.   - John
  43.