Title

It's an unique identification of the record

What is the Name field?

It's the default field that is created automatically when you create a table, it cannot be deleted and is also used as a unique record ID to connect tables

Common use cases

  1. Use it as a “Name” field:
  • “Record ID” can be used as a name of a product or a description of an event.

For Example:

   In an “Inventory” table it can be used to save the name of the products.
  1. Sequential id:
  • “Record Id” can be used as a sequential id to record the number of events that happened

For Example:

  In a “Sales” flow it can be used to register the number of the order.
  1. Random code:
  • “Record Id” can be used as a random sequential number if you want to have a unique id for each record in a situation where records are created constantly

For Example:

  In a “Bug Tracker” flow it can be used to register the Id of the bugs.