Column chart with both value x and y-axis

  • Thread starter Thread starter chris46521
  • Start date Start date
C

chris46521

I was wondering if it is possible to define the x and y axes from two
columns of data for a column chart. For example, I want the x-axis to
be "Days Past Due" and the y-axis to be "Quantity" for a bar chart.
When I try to do it now, it plots both sets of data as separate bar
series and I want it similar to XY scatter but with colums instead.
Thanks for any ideas or suggestions you may have.
 
But that's not what a column chart is good at. Columns cannot be located in
this way, and if they could be, you'd still have to worry about overlapping
and so forth. Why do you need columns? If you want a connection to the axis,
you can use error bars, using a custom measurement of -100% of the value.
But I think even that little bit of decoration will not add value to the
chart.

- Jon
 
Thank you for responding. Management wants to see information presented
in the form of columns and that is why I wanted to know if a column
chart could be used similar to an XY scatter. Is there a VBA or a
plug-in that could accomplish this?
Thanks, Chris
 
I looked at your original question again. Here's what to do.

1. Delete the label above the days past due data (you need a blank cell to
make it easier), and make sure there's a label above the Quantity data.
2. Select a single cell in the data range.
3. Create a column chart.

This gives you almost what you want. If there are gaps in the Days Past Due
data, there will not be gaps in the chart. To get these gaps, go to Chart
Options on the Chart menu, and on the Axes tab, choose Time Scale under
Category Axis. This gives you some funny looking dates along the X axis.
Double click the axis, and on the number tab, choose General.

- Jon
 
That worked perfectly. Thank you so much for your help!

Jon said:
I looked at your original question again. Here's what to do.

1. Delete the label above the days past due data (you need a blank cell
to
make it easier), and make sure there's a label above the Quantity
data.
2. Select a single cell in the data range.
3. Create a column chart.

This gives you almost what you want. If there are gaps in the Days Past
Due
data, there will not be gaps in the chart. To get these gaps, go to
Chart
Options on the Chart menu, and on the Axes tab, choose Time Scale
under
Category Axis. This gives you some funny looking dates along the X
axis.
Double click the axis, and on the number tab, choose General.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"chris46521" <[email protected]>
wrote
in message
 
Back
Top