I am having three columns in spreadsheet COL1, COL2 and COL3. Data is as below
COL1 COL2 COL3
MATH_S1 90 10
MATH_S2 80 9
MATH_S3 70 8
ALGE_S1 95 18
ALGE_S2 85 19
ALGE_S3 75 20
I want to trim the first four characters from col1, and find the average of col2 and col3, for whatever columns which matched col1. In other words, i want the output like this:
MATH 80 9
ALGE 85 19
I am not able to come up with a perfect way to implement this. Please help guys.
Bookmarks