I’m building a platform using Softr with Airtable as the backend and have run into what feels like an architectural limitation.
I have two types of users, each with a completely different profile structure.
My Airtable base currently has:
-
Users – a lightweight table used for authentication and syncing with Softr (name, email, role, etc.)
-
Applicants – a table containing hundreds of applicant-specific fields, formulas and operational data
-
Experts – a table containing hundreds of expert-specific fields
The Users table is intentionally minimal because I don’t want to duplicate all the fields from the Applicants and Experts tables.
The problem starts with onboarding.
When a user signs up, a record is created in the Users table. Depending on where they signed up, they should then complete either an Applicant onboarding or an Expert onboarding.
If the onboarding flow creates a new record, it creates a separate record in the Applicants or Experts table, leaving me with two records that then need to be linked.
If I use Complete Record, the onboarding can only update the Users table (the table synced with Softr), which doesn’t contain the hundreds of fields required for the actual applicant or expert profile.
Ideally, I’d like the architecture to look like this:
User signs up
│
▼
Users table
│
▼
Linked Applicant record
or
Linked Expert record
│
▼
Onboarding updates the linked profile record
This would allow the Users table to remain dedicated to authentication and shared identity information, while the Applicants and Experts tables remain the source of truth for their respective profiles.
Has anyone implemented something similar?
Specifically, I’d be interested in:
-
How you’re handling multiple user types with separate profile tables.
-
Whether you’re using Airtable Automations, Make, or another solution to create and link profile records.
-
Whether you’ve found a way for onboarding to update a linked record instead of only the Users table.
-
Any architecture that avoids duplicating hundreds of fields across multiple tables.
I’d appreciate hearing how others have approached this.