Formula to count dates in column C where there are specific values in same row on column A&B only

Snoochieboochie12

New Member
Joined
May 14, 2019
Messages
1
Hi,

I hope someone can help me; I’m tearing my hair out trying to get this to work.
I am trying to put together a table to measure progress made by a number of individuals to completing their tasks for a given month.
In this summary table I will need to count the number on nonblack cells in a column (Take C as the example) where there is a certain text string on the same row in two other columns (A & B).
i.e. in Count dates in column C where Column A says ‘Dan’ and Column B says ‘June’.
Columns C – F will be populated with VLOOKUP’s, so the formula needs to count ignore the formula and count only the results.

Sheet 1:
Illustrative Table:
ABCDEFGFG
1Design SubmittedDesign ApprovedBuild StartedBuild Completed
2DanJuneCOUNTCOUNTCOUNTCOUNT
3MattJuneCOUNTCOUNTCOUNTCOUNT
4Dan JulyCOUNTCOUNTCOUNTCOUNT
5MattJulyCOUNTCOUNTCOUNTCOUNT
6DanAugCOUNTCOUNTCOUNTCOUNT
7MattAugCOUNTCOUNTCOUNTCOUNT
8LeeAugCOUNTCOUNTCOUNTCOUNT

<tbody>
</tbody>



Sheet 2
Data:
ABCDEFGHI
1ManagerMonthDesign SubmittedDesign ApprovedBuild StartedBuild Completed
2DanJune12/1/1812/1/18
3MattJune
4DanJuly12/1/1812/1/1812/1/18
5MattAug12/1/1812/1/18
6LeeJune12/1/1812/1/1812/1/1812/1/18
7DanJuly12/1/18
8



<tbody>
</tbody>


I ideally need this to work on a table populated with formula results, but could live with converting it all to plain text if I need to.

Any help would be much appreciated! Many thanks
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hello,

I'm not sure why your example shows count for all cells if you said that you only want to count non blank cells.
 
Upvote 0
How about


Excel 2013/2016
ABCDEF
1Design SubmittedDesign ApprovedBuild StartedBuild Completed
2DanJune1100
3MattJune0000
4DanJuly2110
5MattJuly0000
6DanAug0000
7MattAug1100
8LeeAug0000
Sheet1
Cell Formulas
RangeFormula
C2=COUNTIFS(Sheet2!$A$2:$A$7,$A2,Sheet2!$B$2:$B$7,$B2,Sheet2!C$2:C$7,"<>")
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,852
Members
449,096
Latest member
Erald

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