Every file you import must meet these fundamental criteria.
The first line of your file must be a header row. This row contains the unique names of your columns, which are used for mapping data to your form fields.
2. Identifier (ID) Column
One column in your file must be designated as the identifier for Person Matching (e.g., StudentID). For standard imports, the value in this column should be unique for each row. For multi-row imports, the same ID is used across multiple rows to group them.
3. Delimiters
For CSV files, every value within a row must be separated by a comma ( , ).
For TSV files, every value must be separated by a tab. Be consistent throughout the file.
4. Character Encoding
Save your file using UTF-8 encoding. This is the modern standard and ensures that all characters are interpreted correctly.