Hi,
Using an enrichment, I'm creating a custom instance variable in a workflow. As shown below.
However, the issue is that this field defaults to a string. I need it as a number. How can I change the data type to be a number?
Thanks,
Rob
Solved! Go to Solution.
Views
Replies
Total Likes
You need to convert it using ToInteger()
Try
or in the next activity
ToInteger(@difference)
You need to convert it using ToInteger()
Try
or in the next activity
ToInteger(@difference)
Thank you!
Views
Replies
Total Likes
Sorry just thought I should Update as I noticed an error.
ToInteger($(instance/vars/@difference)) correct
$(ToInteger(instance/vars/@difference)) wrong
Views
Replies
Total Likes
Views
Likes
Replies