Updating a cell when a new form is submitted

google sheetsgoogle-forms

I am trying to pull scores from one google sheet to another, and I want this information to update when a new form is submitted by the same person.

Score page
enter image description here

Summary Page

enter image description here

Link to sheets

Link to Google Form

Best Answer

Try this in cell Summary!B3:

=arrayformula( 
  iferror( 
    vlookup( 
      A3:A, 
      sort('Colors'!B2:N, 'Colors'!A2:A, false), 
      columns('Colors'!B2:N), 
      false 
    ) 
  ) 
)