MattLofton GURU
Joined: 23 Dec 2000 Posts: 4834 Location: USA
|
Posted: Mon Mar 27, 2006 4:29 am |
You might have luck with using {} or quotes around %i, but if that doesn't work you can use the old standby of #ADDKEY. #ADDKEY works a little differently than #ADDITEM in that it replaces the value instead of adding to it. Therefore, when adding a new value to whatever already exists you need to also use %db() and %concat() to access the current value:
#addkey DaterecordVariable FieldName %concat(%db(@datarecordvariable, fieldname),"|", your new thing here, either a variable name or a string contained in quotes) |
|