Thread: Average Grade
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Average Grade

Convert the data to numbers and calculate the average numerically. For
example:

A is 4
B is 3
C is 2
D is 1

=(COUNTIF(A:A,"a")*4+COUNTIF(A:A,"b")*3+COUNTIF(A: A,"c")*2+COUNTIF(A:A,"d"))/COUNTA(A:A)

and for your data the answer is 3

--
Gary''s Student - gsnu200775


"Anita" wrote:

Hi

Is it possible to have a list of grades in a column as text i.e
A
A
B
C
D
A

and have Excel tell me which one is the average?

Thanks