Dec 7, 2006 #1 ferrisj IS-IT--Management Dec 7, 2004 79 US I would like to put 3 formulas in a group footer. Each will count a specific value in the above report. Some records are "S" some are "L" the rest are Nulls. What is the Formula to count these?
I would like to put 3 formulas in a group footer. Each will count a specific value in the above report. Some records are "S" some are "L" the rest are Nulls. What is the Formula to count these?
Dec 7, 2006 #2 PaulBricker Programmer Sep 25, 2002 3,554 US You can use an expression like this. =Sum(IIf(IsNull(FieldName),1,0)) That will count the number of null values. You can use =Sum(IIf(FieldName = "S",1,0) That will count the number of "S" values. Same formula for "L" Paul Upvote 0 Downvote
You can use an expression like this. =Sum(IIf(IsNull(FieldName),1,0)) That will count the number of null values. You can use =Sum(IIf(FieldName = "S",1,0) That will count the number of "S" values. Same formula for "L" Paul