*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
...
- Filter-select all by "*Faculty" in Title column ("E).
- Column "G", Email address. Code:
- =CONCATENATE(D2,"@cornell.edu")
- Reminder: Replace the 2 in D2 with the right number!
- =CONCATENATE(D2,"@cornell.edu")
- Column "H", Full name. Code:
- =CONCATENATE(B2," ",C2)
- Reminder: Replace the 2 in D2 with the right number!
- =CONCATENATE(B2," ",C2)
Determine changes of people between months
Copy spreadsheets of two months to compare into a directory.
Open spreadsheets and sort them the same. Such as Data => Sort:
- Supervisor/ Chair
- Last name
- Firstname
Copy old data into new spreadsheet.
- Keep only columns A-E
- Paste into column "I".
Code for column "F". Grads:
- =MATCH(E2,M:M,0)
Staff:
- =MATCH(D2,L:L,0)
Code for column "H":
- =IF(F2=G2,"","!!")
Fill in column "G" sequentially, 2 through to the end.
Insert rows in either data set to get them to match.