Forum Discussion
NathanDellinger
Nov 14, 2021Copper Contributor
Excel Formula for Filtering 2 Columns and Counting the filter cells
I am looking to create a formula that will filter/count 2 Separate columns in the same bulk data, and the counts the cell that only have the data I'm looking to quantify. I have 3000 Rows of dat...
- Nov 14, 2021
How about
=COUNTIFS('ACT PTD YTD'!D:D, "Done", 'ACT PTD YTD'!B:B, "Call")
=COUNTIFS('ACT PTD YTD'!D:D, "To do", 'ACT PTD YTD'!B:B, "Call")
HansVogelaar
Nov 14, 2021MVP
How about
=COUNTIFS('ACT PTD YTD'!D:D, "Done", 'ACT PTD YTD'!B:B, "Call")
=COUNTIFS('ACT PTD YTD'!D:D, "To do", 'ACT PTD YTD'!B:B, "Call")
NathanDellinger
Nov 14, 2021Copper Contributor
Thanks that work great!, Appreciate the help!