USMCFROSTY
Registered User.
- Local time
- Today, 12:35
- Joined
- Mar 5, 2007
- Messages
- 64
Im trying to take the total of the two below and subtract it from 100 for my total who left the field blank.
=Count(IIf([status]="Acceptable",0)) and =Count(IIf([status]="Not Acceptable",0))
Example: 50 "acceptable"
40 "not accptable"
How can i take the total of these two and subtract from 100 for a third box?
Third box should read 10 "those who left it blank.
I did try =Count(IIf([status]="",0)) but this treats it like somthing is in the cell when it is blank.
I also tried =Sum(IIf(IsNull([Status])=True,1,0)) and this gives me the blanks but not all the blanks. It doesn't account for the blanks that came up in =Count(IIf([status]="",0))

=Count(IIf([status]="Acceptable",0)) and =Count(IIf([status]="Not Acceptable",0))
Example: 50 "acceptable"
40 "not accptable"
How can i take the total of these two and subtract from 100 for a third box?
Third box should read 10 "those who left it blank.
I did try =Count(IIf([status]="",0)) but this treats it like somthing is in the cell when it is blank.
I also tried =Sum(IIf(IsNull([Status])=True,1,0)) and this gives me the blanks but not all the blanks. It doesn't account for the blanks that came up in =Count(IIf([status]="",0))

