Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 11
Default Align Line Charts By Milestone Dates?

I'm a chart neophyte.

I have a worksheet with multiple line charts, each line depicting total
hours per month per project.

I would like to align the lines to a common milestone, like "start of
detailed design". Each project of course has a different date for this
milestone.

Other than knowing that somewhere I'll have to specify the dates of the
milestone for each project, I have no idea of what to do.

Any help/insight will be appreciated.

Thanks,
Mike
  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Align Line Charts By Milestone Dates?

Each data series has a column of dates and a column of percent complete
values. I'll use columns A and B in this example. Insert a couple rows so
that the headers are in A3 and B3 and the data starts in row 4. Insert a
column between A and B. In B1 enter the date of reference. In B3 enter a
header like 'Elapsed'. In B4 enter this formula

=if(A4<B$1,-B$1-A4,A4-B$1)

Format as a number (not a date) and drag to fill as much of column B as you
need. Select the data in B:C and create an XY chart (marker with line or
just line).

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


"Mike Hartsough" wrote in message
...
I'm a chart neophyte.

I have a worksheet with multiple line charts, each line depicting total
hours per month per project.

I would like to align the lines to a common milestone, like "start of
detailed design". Each project of course has a different date for this
milestone.

Other than knowing that somewhere I'll have to specify the dates of the
milestone for each project, I have no idea of what to do.

Any help/insight will be appreciated.

Thanks,
Mike



  #3   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 11
Default Align Line Charts By Milestone Dates?

Jon:

So B1 is my milestone date, the IF statement in the new column gives me my
"alignment" and my new common axis for the new charts.

Thanks!
Mike

"Jon Peltier" wrote:

Each data series has a column of dates and a column of percent complete
values. I'll use columns A and B in this example. Insert a couple rows so
that the headers are in A3 and B3 and the data starts in row 4. Insert a
column between A and B. In B1 enter the date of reference. In B3 enter a
header like 'Elapsed'. In B4 enter this formula

=if(A4<B$1,-B$1-A4,A4-B$1)

Format as a number (not a date) and drag to fill as much of column B as you
need. Select the data in B:C and create an XY chart (marker with line or
just line).

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


"Mike Hartsough" wrote in message
...
I'm a chart neophyte.

I have a worksheet with multiple line charts, each line depicting total
hours per month per project.

I would like to align the lines to a common milestone, like "start of
detailed design". Each project of course has a different date for this
milestone.

Other than knowing that somewhere I'll have to specify the dates of the
milestone for each project, I have no idea of what to do.

Any help/insight will be appreciated.

Thanks,
Mike




  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 11
Default Align Line Charts By Milestone Dates?

Jon:

I've gotten your suggestion working fine, for each individual series.

But I'm running into trouble trying to "overlay" the series onto the same
chart. For one series the X axis (Elapsed) ranges from 29-425, and the range
for the other series is 176-572. The X axis ends up coming from whichever
series I add last.

How do I put these on a chart where the X axis is say, 0-600, and the series
lines begin and start on the appropriate "Elapsed" values?

Thanks again,
Mike

"Jon Peltier" wrote:

Each data series has a column of dates and a column of percent complete
values. I'll use columns A and B in this example. Insert a couple rows so
that the headers are in A3 and B3 and the data starts in row 4. Insert a
column between A and B. In B1 enter the date of reference. In B3 enter a
header like 'Elapsed'. In B4 enter this formula

=if(A4<B$1,-B$1-A4,A4-B$1)

Format as a number (not a date) and drag to fill as much of column B as you
need. Select the data in B:C and create an XY chart (marker with line or
just line).

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


"Mike Hartsough" wrote in message
...
I'm a chart neophyte.

I have a worksheet with multiple line charts, each line depicting total
hours per month per project.

I would like to align the lines to a common milestone, like "start of
detailed design". Each project of course has a different date for this
milestone.

Other than knowing that somewhere I'll have to specify the dates of the
milestone for each project, I have no idea of what to do.

Any help/insight will be appreciated.

Thanks,
Mike




  #5   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 11
Default Align Line Charts By Milestone Dates?

Ha! Figured it out. The answer is, Scatter chart.

Thanks!

"Mike Hartsough" wrote:

Jon:

I've gotten your suggestion working fine, for each individual series.

But I'm running into trouble trying to "overlay" the series onto the same
chart. For one series the X axis (Elapsed) ranges from 29-425, and the range
for the other series is 176-572. The X axis ends up coming from whichever
series I add last.

How do I put these on a chart where the X axis is say, 0-600, and the series
lines begin and start on the appropriate "Elapsed" values?

Thanks again,
Mike

"Jon Peltier" wrote:

Each data series has a column of dates and a column of percent complete
values. I'll use columns A and B in this example. Insert a couple rows so
that the headers are in A3 and B3 and the data starts in row 4. Insert a
column between A and B. In B1 enter the date of reference. In B3 enter a
header like 'Elapsed'. In B4 enter this formula

=if(A4<B$1,-B$1-A4,A4-B$1)

Format as a number (not a date) and drag to fill as much of column B as you
need. Select the data in B:C and create an XY chart (marker with line or
just line).

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


"Mike Hartsough" wrote in message
...
I'm a chart neophyte.

I have a worksheet with multiple line charts, each line depicting total
hours per month per project.

I would like to align the lines to a common milestone, like "start of
detailed design". Each project of course has a different date for this
milestone.

Other than knowing that somewhere I'll have to specify the dates of the
milestone for each project, I have no idea of what to do.

Any help/insight will be appreciated.

Thanks,
Mike






  #6   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Align Line Charts By Milestone Dates?

The X axis ends up coming from whichever series I add last.

Don't make a line chart, make an XY chart. In a line chart, all series share
the same X values, and the "numbers" are treated as nonnumeric labels.

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


"Mike Hartsough" wrote in message
...
Jon:

I've gotten your suggestion working fine, for each individual series.

But I'm running into trouble trying to "overlay" the series onto the same
chart. For one series the X axis (Elapsed) ranges from 29-425, and the
range
for the other series is 176-572. The X axis ends up coming from whichever
series I add last.

How do I put these on a chart where the X axis is say, 0-600, and the
series
lines begin and start on the appropriate "Elapsed" values?

Thanks again,
Mike

"Jon Peltier" wrote:

Each data series has a column of dates and a column of percent complete
values. I'll use columns A and B in this example. Insert a couple rows so
that the headers are in A3 and B3 and the data starts in row 4. Insert a
column between A and B. In B1 enter the date of reference. In B3 enter a
header like 'Elapsed'. In B4 enter this formula

=if(A4<B$1,-B$1-A4,A4-B$1)

Format as a number (not a date) and drag to fill as much of column B as
you
need. Select the data in B:C and create an XY chart (marker with line or
just line).

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


"Mike Hartsough" wrote in
message
...
I'm a chart neophyte.

I have a worksheet with multiple line charts, each line depicting total
hours per month per project.

I would like to align the lines to a common milestone, like "start of
detailed design". Each project of course has a different date for this
milestone.

Other than knowing that somewhere I'll have to specify the dates of the
milestone for each project, I have no idea of what to do.

Any help/insight will be appreciated.

Thanks,
Mike






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
select & format "single" axis line in charts Guru Guy Charts and Charting in Excel 1 February 21st 06 03:36 AM
suppress zero values in line charts? Cruickshank Brothers Charts and Charting in Excel 4 June 12th 05 04:28 AM
suppress zero values in line charts? cruickshankbrothers Charts and Charting in Excel 0 January 14th 05 10:27 PM
How do I add a reference line to Excel charts? roswellmike Charts and Charting in Excel 4 January 2nd 05 01:29 PM
How to force continuous lines in line charts wal50 Charts and Charting in Excel 1 December 21st 04 10:43 PM


All times are GMT +1. The time now is 07:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"