S
Seb
In the meantime, here's a workaround.
The idea is to create a new formula field based off of the linked record, and then sort by that new field instead. To do that:
In Airtable
- On the table you want to sort, create a new formula field.
- As the formula, type in IF(LEFT({Linked Record}, 1) = '"', SUBSTITUTE( MID({Linked Record}, 2, LEN({Linked Record}) - 2), '""', '"' ), {Linked Record} )
- Replace Linked Record with the name of your linked field. There are 4 to be replaced.
This will create a new formula field with the data from your linked record, but as text. The long formula strips away unnecessary quotation marks.
In Stacker
- Manually sync schema and data for the table where you made the change.
- Go to that table's Field settings, and turn on the new formula field
- Edit layout of the table you want to sort
- Choose to sort by the new field
Your table should now be alphabetically sorted by your linked records, through the formula field.