You must have the following access to use the functionality in this article:
Adobe Workfront plan* | Pro or higher |
Adobe Workfront license* | Plan, Work |
Adobe Workfront Fusion license** | Workfront Fusion for Work Automation and Integration Workfront Fusion for Work Automation |
Product | Your organization must purchase Adobe Workfront Fusion as well as Adobe Workfront to use functionality described in this article. |
To find out what plan, license type, or access you have, contact your Workfront administrator.
For information on Adobe Workfront Fusion licenses, see Adobe Workfront Fusion licenses.
Returns a floating-point pseudo-random number in the range [0
,1
] (inclusive of 0
, but not 1
).
Use the following formula to generate an integer pseudo-random number in the range [min
,max
] (inclusive of both min
and max
):
{{floor(random * (1.max - 1.min + 1)) + 1.min}}