You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on some initial findings from a dynamic defaults tester.
Explain that this won't work:
type
name
label
calculation
default
decimal
a
random()
integer
b
Enter
${a}
Because the default calculation takes place only once, and before the regular calculation. Regular calculations are still empty when dynamic defaults are calculated.
Solution is usually to move calculation also to default column if ${a} has to be re-used.
type
name
label
calculation
default
decimal
a
random()
integer
b
Enter
${a}
If {a} is not re-used, it could of course simply be:
type
name
label
calculation
default
integer
b
Enter
random()
The text was updated successfully, but these errors were encountered:
Based on some initial findings from a dynamic defaults tester.
Explain that this won't work:
Because the default calculation takes place only once, and before the regular calculation. Regular calculations are still empty when dynamic defaults are calculated.
Solution is usually to move calculation also to default column if ${a} has to be re-used.
If {a} is not re-used, it could of course simply be:
The text was updated successfully, but these errors were encountered: