Importing Data from another Spreadsheet
To bulk add information onto GRACE, you will likely want to use Excel functions to quickly add information onto the Bulk Add Template.
- Download the Bulk Add Template from GRACE.
- Download the data you want to upload. This could be data you download from your school’s database or data you collect yourself in surveys or meetings.
- Identify the ‘key’ that you will use to match data from one spreadsheet to another, typically a student’s name or ID number. Make sure that this key is unique to each student. For example, just a first name or a last name won’t work because some students share the same names. You can use the concatenate function to combine first and last names into one cell. Ex: Concatenate(FIRST, LAST) will give you FIRSTLAST.
- Use VLOOKUP to import data from one spreadsheet to the other
- =VLOOKUP (value, table, col_index, [range_lookup])
- value - The value to look for in the first column of a table.
- table - The table from which to retrieve a value.
- col_index - The column in the table from which to retrieve a value.
- range_lookup - [optional] TRUE = approximate match (default). FALSE = exact match.