Issue report by Thomas Seidler
Product
FileMaker ProVersion
12 and 13 testedOperating system version
Mac OS X 10.9.1Description of the issue
ValueCount misses the last value if it is blank. Which is unhelpful in the event you are trying to determine if two lists are of equal length, you want to count null/empty values too...Steps to reproduce the problem
ValueCount( "0¶¶2¶3¶4") & ¶ &ValueCount( "0¶2¶3¶4¶")
Expected result
55
Actual result
54
Workaround
My own custom function:VC ( _valueList ):
PatternCount ( Substitute ( _valueList ; "\¶" ; "" ) ; "¶" ) + 1