How to use job data in a calculation field within my Flow form?
A calculation field can pull in job metadata — like a target quantity or rated speed — and use it directly in a formula, without the operator having to enter it manually.
Step 1 — Add a calculation field
Drag a calculation field into your form.

Step 2 — Reference the job data in the formula
In the formula area, reference job metadata with:
jobmeta["fieldName"]
Put the exact name of the job data variable inside the quotes.
For example, to reference Units to Make and multiply it by 2:
jobmeta["unitsToMake"]*2
