Como você não fez o upload do Código VBA com o qual está tentando sugerir o código abaixo escrito para testar seus dados.
Dim row as Long
With Sheets("Line_Data_Sheet").Range("A6:C104000"))
For row = 6 To .Rows.Count
If .Cells(row, ColName).Value Like Criteria1 And .Cells(row, ColName).Value Like Criteria2 Then
Debug.Print .Cells(row, valueCol)
End if
Next
End With
NB: Você precisa substituir ColName e Criteria1 & 2 com o seu.
ou você pode usar desta maneira também,
For Each cell In Range("A6:B104000")
If cell.Value = "Year" And cell.Value = "Week" Then
i = cell.Row
Range("E" & i).Formula = "IfError(Application.WorksheetFunction.Index(line_data_sheet.Range(C6:C104000), Application.WorksheetFunction.SUMPRODUCT((line_data_sheet.Range(A6:A104000)=year)*(line_data_sheet.Range(B6:B104000)=week)*ROW(line_data_sheet.Range($6:$104000)))-5),"")"
End If
Next
Espero que isso ajude você.