Re: Counting records with duplicates



There is another way to get a count or list of unique names.
Create a value list of the name field.
Set a global text field via script to:

ValueListItems ( Get ( FileName ) ; "VLNAMEHERE" )

This will put the contents of the value list into the global text
field. To get a count of the names, count the carrage returns + 1
because the last name doesn't have a carrage return. This also allows
you to get the names out by themselves if you need to work with them.

.