Is there a way to test each line in a detail section to see if one field is suppressed and then count the name. In the below example, I selected the field setting of 'suppress if duplicated' for the name. Can I test if the name text suppression is 1 or 0 for true or false? I can then sum the number of employee names using the 1/0 field with a formula like:
IfName field = (If NameSuppress = 0(False) then 1 else 0).
sum IfName field
For example these three columns:
'name' 'date' 'pay end of month'
Want result set of:
George Mcgillianto 11/11/1901 $300
(suppressed name) 12/11/1901 $330
(suppressed name) 01/11/1902 $310
etc.
Employee count = 1
thanks
IfName field = (If NameSuppress = 0(False) then 1 else 0).
sum IfName field
For example these three columns:
'name' 'date' 'pay end of month'
Want result set of:
George Mcgillianto 11/11/1901 $300
(suppressed name) 12/11/1901 $330
(suppressed name) 01/11/1902 $310
etc.
Employee count = 1
thanks