Creating Updates

To create updates, use the CREATEUPDATE function.

Creating updates for the current item

To create an update for the current item, simply enter the content of the update as 1st parameter of the function.

1: [Upd]=CREATEUPDATE("This is a test.")

Should you want your update to contain formatted text, create a template in your Library and use it for content.

1: [Content]=GETCONTENT("Update Template")

2: [Upd]=CREATEUPDATE([Content])

Creating updates for other items

To create updates for other items use the 2nd and 3rd optional parameters: the 2nd parameter to specify the position of the items to update, the 3rd to specify the board alias of the board these items are in. If no board alias is entered, the updates are added to the specified items of the current board.

1: [Upd]=CREATEUPDATE("This is a test.", 1)=> Adds an update to the 1st item of the current board.

1: [Upd]=CREATEUPDATE("This is a test.", "1|2|3")=> Adds an update to the first 3 items of the current board.

1: [Upd]=CREATEUPDATE("This is a test.", "1|2|3", "Board2"")=> Adds an update to the first 3 items of Board2.