I have a sheet for Test Scripts. In this sheet we have an AutoNumber column so we have a fixed ID. We also have a calculated column with the ID and the Name.
ID | Name | IDName
1 | This Script | 1.This Script
2 | That Script | 2.That Script
I also have a Test Result Sheet. in this sheet we have a Dropdown with all the IDNames and a result column. We added a calculated column to pull out the test script ID.
Result Name | Result | ScriptID
1.This Script | Fail | 1
2.That Script | Fail | 2
2.That Script | Pass | 2
Then...back on the Test Scripts sheet, we have a Calculated Column that tries to pull the the Count by Status.
=COUNTIFS({Test Results ScriptID}, [ID]@row, {Test Results Result}, "Pass")
I'm getting zeros for all values.
I've tried to hard code the ID number in the formula and I still get zeros. So, I feel like it can't lookup into a Calculated column.
Anyone?