How to add Checkboxes into IF(AND formulas.
I'd like to be able to pull in when a checkbox is marked off in another sheet.
Sheet 1 has multiple Project IDs. Associated with each project is a checkbox to indicated whether the scope of the project will be impacted.
Whenever a checkbox is marked off for a project in Sheet 1, I want to capture that in a separate sheet.
So far, I have the following, where {CA - PPM Project ID} and {CA - PPM Scope Impacted} are columns from Sheet 1.
=IF(AND(({CA - PPM Project ID} = [Project ID]@row), {CA - PPM Scope Impacted} = "1"), "Yes", "No")
I've tried a couple of variations on this, but nothing seems to be working.
Thanks for your help!
Best Answer
-
Try this:
=IFERROR(INDEX({CA - PPM Scope Impacted}, MATCH([Project ID]@row, {CA - PPM Project ID}, 0)), "")
Answers
-
Try this:
=IFERROR(INDEX({CA - PPM Scope Impacted}, MATCH([Project ID]@row, {CA - PPM Project ID}, 0)), "")
-
Thanks! I had to adjust the column to a checkbox format for it to work, but it did!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 141 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!