Reputation: 27
I am looking at a rather large excel spreadsheet with a long list of dates on it. Each one of these dates marks an error. What I am trying to find out is how many errors occur per week? From there I hope to make a control chart. Thanks so much and please let me know if there are any additional details I need to provide.
Upvotes: 2
Views: 30177
Reputation: 1875
Just Like TMH8885 metioned get week number from each date and then assuming that your dates are in Column A
and weeknumbers are in column B
make a table that list numbers from 1 to 52 next to which enter a COUNTIF(B:B,D2)
(change D2 to cell pointing at correct week number of course).
In the screen shot I was lazy and included only 22 weeks for my table.
Upvotes: 4
Reputation: 888
You could use the WEEKNUM function to pull which week of the year the error occurred in.
=WEEKNUM(your date cell)
From there you could use a pivot table to pull in the weeks then find the average count of errors.
Upvotes: 1