You should be able to extract the data using the following:
Grades = '';
for k = 1:length(textData);
Grades = [Grades, textData{k}{2:6,2}];
end
I'm not sure exactly how you want to organize the data, however, so if you have more information I can take a guess at it. Currently, this just extracts the grades into one long text string.