Re: Few questions
From: Frank Kabel (frank.kabel_at_freenet.de)
Date: 08/26/04
- Next message: Jose Mourinho: "update date..."
- Previous message: stakar: "A Named cell to be in a formula for a code"
- In reply to: Neil Greenough: "Few questions"
- Next in thread: Neil Greenough: "Re: Few questions"
- Reply: Neil Greenough: "Re: Few questions"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 26 Aug 2004 15:52:25 +0200
Hi
see inline
[...]
- "Work out the percentage of grade A*-C grades for that group" -
> each entry in column H has a grade ranging from A*, A, B,C,D,E,F
> etc.... I want to work out how many of the letters in column H are
> actually A*, A, B and C.
for counting
=SUM(COUNTIF(H1:H30,{"A~*","B","C"}))
for percentage:
=SUM(COUNTIF(H1:H30,{"A~*","B","C"}))/COUNTA(H1:H30)
> - "Work out the target percentage of A*-C grades" - I want to work
> out in a selected number of rows, for example rows 1:30, how many of
> the letters in column F are A*,A,B,C.
for counting
=SUM(COUNTIF(F1:F30,{"A~*","B","C"}))
for percentage:
=SUM(COUNTIF(F:F30,{"A~*","B","C"}))/COUNTA(F1:F30)
> - In column C, pupils all have different numbers ranging from 1-200.
> I want to look at each row and if the number in column C is above 95,
> They should have the letter A*, A, B or C in column H. I want to see
> how many do have this and how many don't.
for matching values:
=SUMPRODUCT((C1:C100>95)*(H1:H100={"A*","A","B","C"}))
for non matching values:
=SUMPRODUCT((C1:C100>95)*(H1:H100={"D","E","F"}))
- Next message: Jose Mourinho: "update date..."
- Previous message: stakar: "A Named cell to be in a formula for a code"
- In reply to: Neil Greenough: "Few questions"
- Next in thread: Neil Greenough: "Re: Few questions"
- Reply: Neil Greenough: "Re: Few questions"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|