Hi Belinda -
Keep hanging in there. It sounds like your first needle came out okay,
which is a great first sign.
You have to add each additional needle series separately just like the
first, and change it to a Scatter type series just like the first. If
you formulas are okay, these should give you three needles.
You can embellish your legend to get series name and value together. Use
a formula and the & operator to concatenate the series name and value;
for instance if the name is in F1 and the value is in F2, put this
formula into F3:
=F1&" "&F2
This inserts a space between the name and the value. You can put any
punctuation between or around the labels, and you can control the
display of the value by using number formats. For example, to put a
colon after the name and set the value to have two decimal places, use this:
=F1&": "&TEXT(F2,"0.00")
Now simply use this cell as the name of the series. The easiest way is
to right click on the chart, choose Source Data from the pop up menu,
click on the Series tab, select the series, click in the Name field, and
select the cell (F3) with the mouse.
- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______