Page 1 of 1

Count using partial string

Posted: Mon Feb 16, 2015 1:15 am
by silkwood
Hi I am looking for the Syntax to Count from a Data Column that contains, not equals, the word "Yes" . Is this possible

Re: Count using partial string

Posted: Mon Feb 16, 2015 6:42 am
by Alex K.
Hello,

Please try to use the CountIf functions in this case.

Code: Select all

{CountIf(DataBand, DataSourceName.DataColumnName.Contains("Yes"))}
Thank you.