Help w/multiple column criteria summary report
Answers
-
=IF(OR([1st Column]@row = "Yes - Defect Remediated", [1st Column]@row = "No - Fail"), 1) + IF(OR([2nd Column]@row = "Yes - Defect Remediated", [2nd Column]@row = "No - Fail"), 1) + ..............
Basically you are going to want to use this to populate a if true:
IF(OR([Column Name]@row = "Yes - Defect Remediated", [Column Name]@row = "No - Fail"), 1)
Then you are going to write a second one for the second column, a third one for the third column, so on and so forth. Then you can add them all together.
=IF(....., 1) + IF(....., 1) + IF(....., 1)
You would get a 1 for every column that is "true" and since you are linking together with the + all of those 1's will be added together for that row.
Once you establish that for each row, you can run your metrics on this formula column.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!