Posted to microsoft.public.excel.charting
|
|
Charting the relationship between two cells
There is a VBA way to plot a function without a table but I cannot recall
the reference to the URL. Try Google.
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email
"Del Cotter" wrote in message
...
On Thu, 8 Mar 2007, in microsoft.public.excel.charting,
Andrew said:
Can you / How do you chart a the relationship between two cells
(preferably
without making two tables). It feels like this should be a simple
function
of excel.
I want to see how a cell is effected when I put numbers 1-1,000,000 in it.
The relationship between two variables is best shown by a scatter (or "XY"
chart). All you need to do is provide the chart with a pair of columns,
the left of which is the range of values you put in your input cell,
(that's number of units in this case), and the right of which is the
dependent variable, the results of your output cell. for best results, put
a text label on the top of the second column, but leave the first column
without a label. Include the label row when you select the range for the
chart wizard.
You cannot just give the chart engine the two cells and ask it to cycle
between the values. The spreadsheet is the place to do that, the chart is
just a small feature that reads columns or rows and displays them.
In general we must always remember that Excel is a large spreadsheet
program with a small graphing utility attached, not-- like the ancient
"Harvard Charts" program was-- a graphing program with a little tabular
input area. Always process your data in the spreadsheet, and never search
for the feature of the chart that will do all the calculations; there
isn't one.
(the "trend line" feature is an exception to this rule, and perhaps
unfairly raises the users' expectations because of this-- and then the
users ask how they can extract the data from the trendline to use in the
spreadsheet!)
--
Del Cotter
NB Personal replies to this post will send email to
,
which goes to a spam folder-- please send your email to del3 instead.
|