Is it possible to make an app without synchronization?

I’m making an app to calculate contract termination. Each person has different information, so I don’t want the APP to synchronize the information, but even creating a table it still automatically synchronizes whenever a person types information in the “text” field.

Can you explain what you mean by synchronization here?

Do you mean that you don’t want the entered data saved to the database?
I’m guessing that maybe you’re using an Add Form and a new row is created with each submission, and you don’t want that?

1 Like

Synchronization I mean that data filled in a form by a user appears to all other users in real time. I would like each one to fill in their data, being an individual app for each user.

Create user specific columns and use those to hold your values instead.

2 Likes