count values accross multiple columns

emearley

New Member
Joined
Nov 27, 2007
Messages
3
Hi,,

I am trying to count occurances of dates accross a set of data in multiple columns.. I am using this to understand future workloads based on date due of work orders and varying frequencies. I have seven due date columns and my data set basically looks like this.

Due date 1 Due date 2 Due date 3
12/12/2012 12/13/2012 12/14/2012
12/13/2012 12/14/2012 12/15/2012
12/14/2012 12/15/2012 12/16/2012

What I would like to do is count how many times each individual date occurs. What I have been reading is that a countif function is the closest thing use but i have not been sucessful in getting the results i need. I have also tried various pivot table configurations and that is also not working. I am an average user of excel would need some assistance.

Thanks..
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi,,

I am trying to count occurances of dates accross a set of data in multiple columns.. I am using this to understand future workloads based on date due of work orders and varying frequencies. I have seven due date columns and my data set basically looks like this.

Due date 1 Due date 2 Due date 3
12/12/2012 12/13/2012 12/14/2012
12/13/2012 12/14/2012 12/15/2012
12/14/2012 12/15/2012 12/16/2012

What I would like to do is count how many times each individual date occurs. What I have been reading is that a countif function is the closest thing use but i have not been sucessful in getting the results i need. I have also tried various pivot table configurations and that is also not working. I am an average user of excel would need some assistance.

Thanks..

You can extract unique item to one column(copy/paste one column under another and then use use Remove Duplicates tool from Excel option) and the use

Excel 2010
ABCDEFGH
1Due date 1Due date 2Due date 39All entries
212/12/201212/13/201212/14/201212/12/201219
312/13/201212/14/201212/15/201212/13/20122
412/14/201212/15/201212/16/201212/14/20123
512/15/20122
612/16/20121
Sheet1
Cell Formulas
RangeFormula
F1=SUM(F2:F6)
F2=COUNTIF($A$2:$C$4,E2)
H2=COUNTA(A2:C4)

The COUNTA formula is here just to make sure that you have got all items conted.
 
Upvote 0
I think I have found my answer... a little sloppy in my opinion but it seemed to work.. . I just took all my columns and used copy > paste options > Paste link and put all dates in a single row (over 10000 rows) and then just pivoted off the long list of dates. I guess I was overthinking what I needed to do.
 
Upvote 0

Forum statistics

Threads
1,215,197
Messages
6,123,581
Members
449,108
Latest member
rache47

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