I’m trying to re-create the “Action” column for Case History in Skuid & am running into a bit of trouble. Below is a screenshot of the action field which i’m creating in a UI-Only template field within Skuid.
My sample formula is; "Changed " + {{Field}} + " From " + "Old Value " + "To " + “New Value”
This works fine when just using strings; however, when I replace the strings with fields {{OldValue}} and {{NewValue}} I’m getting this error message;
1. Invalid syntax for field formula: "Changed " + {{Field}} + " From " + {{OldValue}} + "To " + {{NewValue}}. SyntaxError: Unexpected identifier
I had thought the issue might have something to do with OldValue and NewValue being “AnyType” fields but i’m unsure why i’m running into issues when trying to include these fields. Any ideas / suggestions would be much appreciated.