Excel – Day of the week and Time Graphing in Microsoft Excel

chartsdate timemicrosoft excel

I have an Microsoft Excel document with two columns, date (mm/dd/yyyy) and time HH:MM(a/p). Each row represents an order (The day it was placed and the time it was placed).

How can I graph this so that the Y-axis is the number of orders and the X-axis is the day of the week? (Monday-Sunday)

How can I graph this so that the Y-axis is the number of orders and the X-axis is the time of day? (Hour0-Hour23)

Is this even possible using MS Excel? I've never done anything this complicated. Is it even possible to convert dates (mm/dd/yyyy) into days of the week?

I don't expect a complete answer (but if you have one please send it). I don't even know where to start or if it is even possible.

Best Answer

It is perfectly possibly to convert dates to days of week using simple formatting of the date column.

However, Do you want to sum by day of the week? If so, you need a pivot table.

The easiest way is to create a new column with the formula (assuming the date is in column A and the new column is B) =$A1 where 1 is the row number. This is easier still if you make your source data into an Excel table first. Then you only need to add the formula in the first data row (not the heading) and Excel will fill the rest for you. That also makes the next but one step easier.

Next, format your new column with a custom format of ddd which gives you a 3 letter DoW.

Now create a pivot table from the data with the DoW as the rows and the data as the sum of your order column (it may default to count rather than sum).

Related Question