I want to be able to count the number of records that returned False. On the report I created a formula called Success Flag to place '*******' on that line to help the users identify those that failed. Formula is as follows:
if {Tracking.Success}= FALSE then '*******' else ' '
Success is the database field name and it returns either True or False.
I saw on the on-line help the following formula which I tried to use to count the number of occurrences of the string ******* but was not successful in getting it to work if indeed it would do what I am looking for it to do.
(Set[,EXCLUDEEMPTY|INCLUDEEMPTY])
Also I tried to simply create a formula as follows but could not get that to work either. Not sure what exactly am I doing wrong. Thanks in advance
Global NumberVar NumStrings;
if { Tracking.Success = "*******" Then
NumStrings := NumStrings + 1;