UniqueList ( ListA ; CaseSensitive )
Agnes Barouh, Tic Tac
http://www.tictac.fr
Unique data in a list
Sample Input:
UniqueList ( "One¶Two¶three¶two¶One ; "" or 0 )
--------------------
UniqueList ( "One¶Two¶three¶two¶One ; 1 )
Sample Output:
One¶Two¶three
-------------
One¶Two¶three¶two
Description:
Not recursive Function - Optional Parameters : Case Sensitiveness ( boolean format or null )
* UniqueList () requires CustomList ( start ; End ; Function )
http://www.briandunning.com/cf/868
----------------------------------------- more détails
--------- CaseSensitive = empty or 0
UniqueList ( "One¶Two¶three¶Four¶five¶ONE¶two¶four¶five¶Seven" ; "" or 0 )
-> Result = "One¶Two¶three¶Four¶five¶Seven"
--------- CaseSensitive = 1
UniqueList ( "One¶Two¶three¶Four¶five¶ONE¶two¶four¶five¶Seven" ; 1 )
-> Result = "One¶Two¶three¶Four¶five¶ONE¶two¶Seven"
Note: these functions are not guaranteed
or supported by BrianDunning.com. Please contact the individual
developer with any questions or problems.
This is my Custom Function and I want to
edit it
digg this page | del.icio.us this page
Newest Custom Functions:
Custom Function Authors:
Link to all of your own custom functions on this site with the following URL:
http://www.briandunning.com/filemaker-custom-functions/results.php?author=Your
Name Here