You're welcome.

INDEX($E$2:$T$13,0,MATCH($B$19,$E$1:$T$1,0))

Match finds which column has the value of B19 in row 1.
So if B19 = Q4, then MATCH returns 4 (it's in the 4th cell of E1:T1)

So we have
INDEX($E$2:$T$13,0,4)

INDEX returns the range intersecting at the specified Row# and Column# of the specified Range
INDEX(Range,Row#, Column#)
So if you did INDEX(A1:G10,3,4) you'd have D3 (3rd row 4th column)

When a 0 is used for the Row argument, then it returns a range that is ALL the Rows at the column specified
INDEX($E$2:$T$13,0,4) = the 4th column, All Rows = H2:H13


The reverse is true if you put a number in the Row argument, and 0 in the Column
INDEX($E$2:$T$13,4,0) = Row 4, All Columns = E5:T5. (Row 5 is the 4th row of E2:T13, 2 is the first, 3 is the 2nd, 4 is the 3rd)

Hope that helps.