About This Code
Brief Description:
Adding new value to TEXT field - with multiple values
Contributor:
Marcel Jong Tjien Fa
Last Modified:
24 Jul 2003
OpenNTF Disclaimer
All of the program code and information presented in the OpenNTF.org Code Bin are provided "as-is", and should be used at your own risk. OpenNTF.org make no express or implied warranty about anything in the Code Bin, and OpenNTF.org will not be responsible or liable for any damage caused by the use or misuse of anything from this site. OpenNTF.org makes no guarantees about anything. Please thoroughly test all of the knowledge and code you find here before you attempt to use them in your production environment.
Code / Description
Assume you have a TEXT field which allows multiple value. Adding a new value / keyword like this will not work
FIELD Test := Test + @NewLine + AValue;
Use the @Implode and then the @Explode
FIELD Test := @Implode(Test ; ",") + "," + AValue;
FIELD Test := @Explode(Test ; ",")
Usage / Example
Comments
Posted by Roger Arundell on 07/24/2003 06:31:11 PMMore effeciently...
FIELD Test := Test : AValue;
Posted by Marcel Jong Tjien Fa on 07/25/2003 02:04:28 AMThanks for the tip!
It works (of course)
Posted by Ruben DT on 07/29/2005 01:25:26 PMOther option
FIELDTest := @Trim(Test : @Text(_Value));