Hi @Anonymous
Could you please share a bit more about your scenario?
How do you calculate the value of several TextInput boxes? Could you please share a bit more about the formula?
If you want to display the calculated result within another screen, I think the Global variable could achieve your needs. You could consider take a try to store the calculated result into a global variable (using Set() function), then display the variable value within your another screen.
Please take a try with the following formula:
Set(Variable1, CalculatedResult1);
Set(Variable2, CalculatedResult2);
...
then you could display the calculated result via the Variable1, Variable2, ... within your another screen.
More details about the Set function, please check the following article:
Set function
Note: You could not use UpdateContext() function to initialize your variable, context variables are scoped to a screen, which means that you can't build a formula that refers to a context variable on another screen.
Best regards,
Kris