Link Column

The Link column creates a relationship between two tables. Click a cell to search and select records from the linked table.

Relationship types

TypeDescriptionExample
One-to-OneEach record links to exactly one record in the other tableEmployee → Laptop
One-to-ManyOne record links to many recordsCompany → Employees
Many-to-OneMany records link to one recordEmployees → Department
Many-to-ManyRecords on both sides can link to multipleStudents ↔ Courses

Setting up

  1. Add a new column → select Link
  2. Choose the target table from the dropdown
  3. Select the relationship type
  4. The column appears; click any cell to search and link records

How linking works

  1. Click a Link cell
  2. A search popup appears showing records from the linked table
  3. Type to search by any field
  4. Click a record to link it
  5. The linked record's primary field value displays in the cell

Using with Lookup and Rollup

Link columns are the foundation for Lookup and Rollup:

  • Lookup: Pull a specific field from the linked record into this table
  • Rollup: Aggregate values across all linked records (SUM, COUNT, AVG)

Example: CRM structure

Companies table
  ↓ (One-to-Many)
Contacts table (Link to Company)
  ↓ (One-to-Many)  
Deals table (Link to Contact)

On the Companies table:

  • Lookup: "Primary Contact Name" (from Contacts)
  • Rollup: "Total Deal Value" (SUM of Deals.amount)
  • Rollup: "Number of Contacts" (COUNT of Contacts)
Tip

Plan your table relationships before building. Draw the connections on paper first: which tables link to which, and in what direction. Changing relationship types after data is entered can be disruptive.

Note

When you create a Link column in Table A pointing to Table B, a reciprocal Link column is automatically created in Table B pointing back to Table A.