Feb 21, 2020 05:38 AM
The given primary field is Title. How can I change it to Artist?
Feb 21, 2020 10:37 AM
You cannot change the primary field to a different field. You can only change the definition of the individual fields and move values around to match.
You will need a temporary field to hold values as you move them around to avoid loosing data. You also need a temporary name for your primary field as two fields cannot have the same name at the same time.
PrimaryTemp
.Title
.PrimaryTemp
to the new Title
field. You can do this as a single copy/paste by selecting the column.Artist
field to PrimaryTemp
.Artist
field.PrimaryTemp
field to Artist
.This method uses temporary formulas to avoid copy/paste errors.
PrimaryTemp
.Title
as a formula field with the formula {Title}
. Wait until the titles appear in all the records in both columns.Title
field type, to change it from Formula
to Single line text
. This will convert the titles to regular strings.{Artist}
. Wait until the artists appear in all the records in both columns.Single line text
. This will convert the artists to regular strings.Artist
field, and rename the primary field to Artist
.Another option is to have “Title” and “Artist” as regular fields in your table. Then convert your primary field to a formula. This method is the most flexible, making it easy to change the primary field on the fly.
Album
or Painting
.Title
and copy the values from the primary field Title
to it, using either regular copy/paste or the formula method described above.{Artist} & ' - ' {Title}
.You can rename or edit the field type of any field by clicking the small triangle to the right of the field name. Select “Customize field type” or “Rename field” from the menu. (Both menu options do the same thing).
Make sure that you aren’t using any filters and can see all the records when you copy value around! If you copy/paste when viewing only some records, the values that you don’t see won’t be copied/pasted.