0

I have an error on this calculation:

Trying this:

Text(Value(TextInput2)+Value(TextInput2_1)/2) 

Any ideas?

2
  • What is the error message? Where are you adding this formula, which control and property? Commented Nov 12, 2022 at 3:27
  • Hi @Jose1978, did you try using solution given below? Please Upvote(^) and accept as an Answer if it helped you in any way & it will help others with similar question in future to find the correct answer easily. It also removes this question from "Unanswered questions" list. Commented Nov 30, 2023 at 12:23

1 Answer 1

0

First of all, change the "Format" property of the Text Input controls to "Format.Number".

Then try using below formula on "Text" property of label control:

Text((Value(TextInput2.Text)+Value(TextInput2_1.Text))/2) 

OR

Text((TextInput2.Text + TextInput2_1.Text) / 2) 

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.