Data from another sheet based on another cell criteria ?
Hello.
Hoping to get data count based on criteria from another cell , from another sheet?
From another sheet i am trying to count the occurrences "PCM" and "ICM" appear on completed or cancelled projects only. Trying to get the "ACTIVE" projects that involve those 2 teams.
thank you in advance
Answers
-
I would put a formula in a checkbox column in that sheet like:
=AND(OR(CONTAINS("ICM", [Row A]@row), CONTAINS("PCM", [Row A]@row)), NOT(OR([Row Status]@row = "complete", [Row Status]@row = "cancelled")))
And then use COUNTIF and cross-sheet reference to go over there and count how many TRUEs you have.
-
I would think that this would work:
=countifs({projectStatus},"Active", {rowA},"PCM")+countifs({projectStatus},"Active",{rowA},"ICM")
sometimes it is easier to just add to simple countifs than to try to figure out a single formula with REALLY efficient and tricky criteria.
-
It'd help to see the sheet you want to pull this information into and its purpose.
If the goal is to summarize information, there may be simpler options:
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!