Sign up not sending to correct corresponding screen

Hi!! I built a sign up screen for a sports app. The user has to enter their info and what "role" they are: Coach/Parent/Player. I made code to sort users after creating an account ( if Coach, it goes to homescreen1 / if Parent or Player, it goes to homecreen2 ) But it is not sending the user to the correct screen when I test it on my phone. The data saves, but it only saves as the "Coach" role and only takes the user to the homescreen1, even if I made the user another role.

This is the code:

and this is the data being stores in Google sheets (All fake data for testing)

Please help!!

That Button1.Enabled, Button2.Enabled... test is useless.

They start out enabled and stayed enabled.

Create a new global variable TYPE and set it to the appropriate value (Coach, Player,...) in each appropriate button's Click event.

Just send the global variable , no need to check which button was clicked.

P.S. Don't yell Success after issuing the Web Get.

You'll know your request succeeded only in the Web GotText event.

Ok! I will try that thank you

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.