Hi @CarlosCalleja ,
Could you please share a bit more the formula you used in your app?
If you use ";" as Formula chaining on your side, you could separate invocations of functions in behavior properties as below:
Collect(T; A);;Navigate(S1; "")
Please check the following article for more details:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/operators
If above formula format could not work in your app, please try the following formula format:
Collect(T; A) && Navigate(S1; "")
Of course, if you want your multiple functions to be executed simultaneously, the Concurrent function could achieve your needs. Please try the following formula as below:
Concurrent(
Collect(T; A); // formula1
Set(Var1, "Test"); // formula2
UpdateContext({Status: "Active"}) // formula3
)
In above formula, the formula1, formula2, formula3 would be executed simultaneously.
Note: The Navigate function, Exit() function, Back() function could not be supported within the Concurrent function.
Best regards,