I have a field that is returning the status of various tests (which are divided into groups). The following values are present in this field:
1=Passed
2=Failed
3=Blocked
The field has a "number" data type. My hope was that I could count the number of times that "1", "2", or "3" appears, but I have not been successful in counting by test groups. I am able to get the total number of tests counted by the Passed/Failed/Blocked value - it is just per group that I can't get.
I have tried using the following formulaes to count the number of tests per group:
=Count(IIf([tcID],"Passed")
=Count(IIf([tcID],"1")
=DCount("[tcID]","1_tbltcMaster","[tcID] = 'Passed1'"
=DCount("[tcID]","1_tbltcMaster","[tcID] = '1'"
If anyone can help, I would really appreciate it. I know I am close, I just need a little help...
- Ben
1=Passed
2=Failed
3=Blocked
The field has a "number" data type. My hope was that I could count the number of times that "1", "2", or "3" appears, but I have not been successful in counting by test groups. I am able to get the total number of tests counted by the Passed/Failed/Blocked value - it is just per group that I can't get.
I have tried using the following formulaes to count the number of tests per group:
=Count(IIf([tcID],"Passed")
=Count(IIf([tcID],"1")
=DCount("[tcID]","1_tbltcMaster","[tcID] = 'Passed1'"
=DCount("[tcID]","1_tbltcMaster","[tcID] = '1'"
If anyone can help, I would really appreciate it. I know I am close, I just need a little help...
- Ben