How have different field on different type of user

Hi, I would like to have different type of user and each type have different field. How can I do that ? Thank you !

  1. Create a datatype for each different type of user that you want to have, each with it’s own fields (e.g. UserTypeA, UserTypeB, etc.)

  2. Then you can have a field on the User data type to indicate which usertype a particular user is (perhaps chosen from an option set).

  3. Also have a separate field for each of the different Usertypes on the Main User Datatype, which will each be of the appropriate Datatype (i.e. a UserTypeA field, which is a UserTypeA) etc.

That way, you can link a particular user to the usertype that they are, which will contain all the fields and data for that usertype.

You can use conditionals along with option sets to define which usertype thing to access for a given user. i.e. if current user’s Usertype is UsertypeA, you can get the data from the current user’s UsertypeA field.

Thank you !