Count Dates held in different Tab

MrCat

New Member
Joined
Sep 25, 2017
Messages
10
Hi All,
Some fields are empty in the column, but I want to only count the fields with a date in this second tab.

Tab 1 has the formula
Tab 2 has the data in column C, the data being dates which I need to have the total number of cells which have a date in.

So I'm thinking it'll be something like this:

=COUNTIF((ISNUMBER('Tab2'!$C:$C)))

Thanks in advance!
 
Last edited by a moderator:

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
I've decided to use =COUNTA('TAB2'!C2:C)

But if anyone has any better suggestions please let me know!
 
Upvote 0
Understanding the Excel really stores dates as numbers (specifically, the number of days since 1/0/1900), you can use:
Code:
=COUNTIF('TAB2'!C:C,">0")
Just bear in mind that if you have other numbers in column C, it will count them too.
 
Upvote 0

Forum statistics

Threads
1,216,489
Messages
6,130,959
Members
449,608
Latest member
jacobmudombe

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