This formula allows you to keep a revision history in a single computed field. Unlike most such revision trackers, it does not rely on the QuerySave event. The formula tests if the current user's name is in the most recent entry in the field. If so, only the date is updated so you don't get multiple entries for the same person if there is no intervening editor. The results display like this:
Code
thisUser:=@Name([CN];@UserName);
REM "To use this function change the field name below from displayUpdater to your field name";
REM "The field should be Text, computed, allow multiple values, display separate entries with New Line";
thisfield:=displayUpdater;
REM "Assign all current lines in this field to a temporary variable";
existingLines:=thisfield;
REM "Each new line will have the user's name and the current date-time";
newLine:=thisUser+" "+@Text(@Now);
REM "Now compare to see if the current user is the most recent editor";
REM "Get the last entry since it contains the mos
To continue reading for free, register below or login
To read more you must become a member of SearchDomino.com
');
// -->

t recent editor";
REM "First get a count of the number of lines --- elements --- already there";
numLines:=@Elements(existingLines);
REM "If there's only one line assign it to lastEntry var, otherwise assign the last entry to lastEntry var";
lastEntry:=@If(numLines=1;existingLines;@Subset(existingLines;-1));
REM "Test whether the last line contains the name of the current user";
REM "Later we want to replace that line rather than adding a new line every time he saves the doc";
isSameUser:=@Contains(lastEntry;thisUser);
REM "Now get all lines but the last line";
allButLast:=@If(numLines=1;"";@Subset(existingLines;numLines-1));
REM "If the doc is being saved, then if this is same user return all but the last line followed by the new line";
REM "If this is not the same user, return everything preexisting plus a new line";
REM "If the doc is not being saved just show the contents of the field";
@If(@IsDocBeingSaved;@If(isSameUser;allButLast:newLine;thisfield:newLine);thisfield)