KNOWLEDGE BASE
Log In    |    Knowledge Base    |    4D Home
Tech Tip: Count the total number of list item in a hierarchical list object
PRODUCT: 4D | VERSION: 2004 | PLATFORM: Mac & Win
Published On: December 2, 2004

Starting in 4D 2004, the command Count list items has been modified so that it can return either the number of visible (expanded) list items or total number of list items.

For example:

$vlNbVisibleItems:=Count list items(hList) ` returns the number of all visible list item
$vlNbTotalItems:=Count list items(hList;*) ` returns the number of all list items (both visible and hidden)