ListValuecount()

Counts the number of times the given element appears in the list

Usage

NUMERIC = ListValuecount( list, element, delimiter )
Argument Summary
list list
element element
delimiter delimiter - default comma (,) [optional]

Calling

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

ListValuecount(
   list=?, 
   element=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListValuecount( ArgumentCollection={
   list : ?, 
   element : ?, 
   delimiter : ?
} );