Hi @Kpreeti1256 ,
Could you describe more clearly about the calculation on outside control based on values entered in edit form?
Waht's more, what value do you want to use, the data in textinput, the data that you select in drop down, etc?
If the form has not been submitted, you could use the value entered in the form by using:
Value(DataCardValue1.Text) (textinput)
Value(DataCardValue1.Selected.fieldname) (drop down)
DataCardValue1 is the control name.
If the form has been submitted and you want to use the value entered in the form.
Data will be invalid after the form being submitted.
So you need to save the data as variable before the form being submitted.
Try this formula:
Set(a,Value(DataCardValue1.Text));SubmitForm(Form1)
Then, you could use the variable a directly.
Best regards,
Community Support Team _ Phoebe Liu