ArrayValuecount()

Returns the number of times the search element occurs in the array, or return 0 if not found

Usage

NUMERIC = ArrayValuecount( array, element )
Argument Summary
array Array Object
element search element

Calling

Supports named-parameter calling allowing you to use the function like:

ArrayValuecount(
   array=?, 
   element=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayValuecount( ArgumentCollection={
   array : ?, 
   element : ?
} );