Hi All,
I have a app, where I want the users to register themselves first, after registration based on their roles that they have chosen while registering different tabs would be visible to them with the personalised data, here I have confusion in the app access, if I add users to Users table and made the app only accessible for them, after they register there would be 2 rows with the same name, if I make app accessible only with link without sending any pins to email for logging in only the registration form is visible even after submitting form, here while submitting form I am setting the value as true to the completed? column and using the same condition for others tabs to visible,
Please suggest me the solution for this
Sounds like you are using an Add Form for post login registration. Don’t do that. Use an Edit Form instead and make sure you have filtered where email is signed in user.
@Darren_Murphy , I am trying to implement edit form, here though I am using text entry, there is no default value field,it’s showing min and max character length
“Edit” means you are editing the values that already exist in the existing row. Having Default value doesn’t really make sense unless you are adding new rows.
If you are manually adding users before they register, wouldn’t it make sense to preset those values that you want as “default”?
yeah, but I want to set a column “Completed” as true when registration
form is submitted, so that I can use that value to set visibility conditions to other tabs
I would just add an IF column that checks that all required fields are filled and then return true. Then you can use that value for your conditions.
@Jeff_Hager Hi I tried using if-else-then column to check all the columns are filled and make it true but I couldn’t add “and” condition it’s becoming “OR” condition, it’s becoming true even if only one column has value
Change it to check for false conditions. If any one condition is not met, then return false. Else return true.