Creating a count for a Column

So I have a column I am trying to get a count of by year for a Metric dashboard. I am using the following formula: =countif([Completion Date]:[Completion Date], ="2023"). This formula is not working and I am not the best with them. Can someone help me figure this our?
Best Answer
-
Yes, you would add another range criteria set to the existing COUNTIFS structure.
=COUNTIFS([Completion Date]:[Completion Date], IFERROR(YEAR(@cell), 0) = 2023, Status:Status, @cell = "In Progress")
Answers
-
Assuming the [Completion Date] column is a date type column hosing date type data, give this a try:
=COUNTIFS([Completion Date]:[Completion Date], IFERROR(YEAR(@cell), 0) = 2023)
-
That worked, but now I have one more question. Is it possible to create a similar formula that shows all the projects that are "In Process" within my Status column?
-
Yes, you would add another range criteria set to the existing COUNTIFS structure.
=COUNTIFS([Completion Date]:[Completion Date], IFERROR(YEAR(@cell), 0) = 2023, Status:Status, @cell = "In Progress")
-
that worked thx!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 522 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!