ReplaceInList ( theList , offset , value )
Replaces item number offset in theList with the value.
Average rating: 4.3 (36 votes) Log in to vote
Don Aehl none http://nop |
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
Replaces item number offset in theList with the value.
If offset < 1 then it appends value to front of list.
if offset > count of list, then it appends value to end of list.
ex: ReplaceInList ( "apple¶orange¶grape" , 3 , "banana" ) = "apple¶orange¶banana"
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.