What's the best way to represent the variance between two groups of dates? (Charting/Formula)

hmmmidk220

Board Regular
Joined
Dec 14, 2016
Messages
55
Hi!

So lets say we have two sets of dates when something is predicted to be delivered/finished. Each set has two columns: Date of delivery and order number. Assume each order number matches between the two sets, it's just that each set has a different delivery date.

If we wanted to see as a whole how 'off' we are between the two sets of dates, what's the best way to show that? What formula could be used? (some kind of % change?) What kind of chart would show it best?

Thanks!
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Maybe:

ABCDEFGHIJKLM
1DateOrder #DateOrder #Average varianceOrder #DifferenceDifferenceCount
21-Jan11-Jan10.810-20
32-Jan24-Jan524-11
43-Jan36-Jan23002
54-Jan43-Jan34111
65-Jan55-Jan45-120
730
80.8Average41
950
10

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
J8=AVERAGE(J2:J6)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Array Formulas
CellFormula
G2{=(SUM(SUMIF(E:E,E2:E10,D:D))-SUM(SUMIF(B:B,E2:E10,A:A)))/COUNT(D:D)}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>



The formula in G2 figures out the average difference in days between the dates in A and the dates in D, matching order number. It expects all order numbers to have a corresponding number in the other group, otherwise the result is meaningless. But there's a lot of details you need to consider. In this example, order 5 came early, which improves the average.

As far as a chart, you can organize your data in groups such as I:J and L:M. You can select the data in those groups and play with charts to see if anything works for you. About the best I saw was to select L1:M9 and choose a bar chart.
 
Upvote 0

Forum statistics

Threads
1,215,555
Messages
6,125,490
Members
449,234
Latest member
slzaleski

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top