@ananda
Please consider changing your Formula to the following:
ForAll(
GroupBy(yourData,
"Title",
"_recs"
),
{Title: Title,
Q1: LookUp(_recs, Quarter="Q1", Score),
Q2: LookUp(_recs, Quarter="Q2", Score),
Q3: LookUp(_recs, Quarter="Q3", Score),
Q4: LookUp(_recs, Quarter="Q4", Score)
}
)
This will produce the results that you have asked for.
I hope this is helpful for you.