Is there a way to count the # of instances of ; in a static field? I tried to do search(";",[field_name]) but it returns something like 16, when the answer should be 3. I made sure to set the field type to integer and the value type to "formula result"
The reason why the "SEARCH" operation wasn't working was that SEARCH returns the number of the character which your string is first found. So if you execute SEARCH(";",[field_name]) and it returns 16, this means the character ";" first appears as the 16th character. It does not mean that it occurs 16 times.
It might be useful for us to implement a "COUNTTEXT" function which does what your requesting.