A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Let's Assume that your column E is AOIName and column F is TotalFixDur, that is why you have a formula like this.
AVERAGEIF(E179:E238,"left",H179:H238)
Let's say your below table has participant in column D
Participant Side Duration(ms)
participant_1 right 0.208
participant_1 left 0.9
participant_1 right 0.32
participant_1 left 0.67
Now, let's take your table
Participant Average left
participant_1.eyd 0.48745
participant_2.eyd ??
participant_3.eyd ??
Let's say, the column Participant is in column J and starts in row 1, hence participant_1.eyd will be in J2.
You will need to use following formula in this case
=AVERAGEIF(H179:H238,E179:E238,"left",D179:D238,J2)
This formula can be dragged down.