Form Fields
I want to create two fields on a form e.g Quantity and Rate and i want Total to be as a result of Quantity * Rate = Total . How do i implement this on the form without using code
Create the Quantity and Rate fields first. Then create the Total field and use the options on the Validation & Defaulting tab. Set a default value to be a formula using your two fields, for example {quantity}*{rate}. On the Display tab, you’ll want to set the field to a display type of Inline Text also to make it clear it’s a calculated value. Always good to add text in the Help field to give users more info about how it’s calculated.
Thank you very much it worked and thanks for the extra advice on the inline text.