Server Connect Set Value in a loop

Please check Patrick's explanation on how the global name works:

The syntax is pretty simple. If you want to do any math with dynamic expression, the syntax is always:

{{ you do math opeartions inside these }}

Wrong:

{{var1}} + {{var2}} + ({{var3}} * {{var4}}) / 7

Right:

{{var1 + var2 + (var3 * var4) / 7 }} 
3 Likes