Thread: Problem
View Single Post
  #10   Report Post  
Posted to microsoft.public.excel.misc
damanwitdaplan damanwitdaplan is offline
external usenet poster
 
Posts: 16
Default Problem

Wow! That worked much better.

But for some reason in cell B49 I get #REF! and in cell B50 I get the 7th
high scorer. If I change anything the #REF! symbol moves up and down the
results. I think the problem is in AB22 because that is the only one of the
cells that has a decimal. (9.97).

I followed your instructions of only copying =AA12-ROW()/1000 down to AB16.

Thanks again for your help!


"Sandy Mann" wrote:

Sorry I failed to notice that you now had a gap in your data. What I
suggest is that you construct a complete set of data as follows:

In cell AB12 enter =AA12-ROW()/1000 as before but this time copy it down to
only AB16
In cell AB17 enter =AA26-ROW()/1000 and copy down to AB22

Now do the same sort of thing with the names in Column A

So in AC12 enter =A12 and copy down to AC16
in AC17 enter =A26 and copy down to AC22

After that you can hide both columns AB & AC

Now in B43 use the formula:

=INDEX($AC$12:$AC$22,MATCH(LARGE($AB$12:$AB$28,ROW ()-42),$AB$12:$AB$28,0))

and copy down to B50

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


with @tiscali.co.uk


"damanwitdaplan" wrote in message
...
I keep getting either #VALUE! or #NUM! in B43:B51 when I put in
=INDEX($A$12:$A$28,MATCH(LARGE($AB$12:$AB$28,ROW()-11),$AB$12:$AB$28,0)).
I'm
confused as to where the ranges are in the formula. Any help would be
greatly
appreciated.

"Sandy Mann" wrote:

From what I see allyou need to do is to adjust the ranges in the formulas
that I gave you.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


with @tiscali.co.uk


"damanwitdaplan" wrote in
message
...
Okay, my computer just crashed so I had to adjust some things. Also my
friend
said I need more quizzers on my sheet so I had to adjust some more
things.

Here is another in-depth description of what I have so far.

A AA
12 Quizzer #1 110 [=SUM(B12:Z12)]
13 Quizzer #2 100 [=SUM(B13:Z13)]
14 Quizzer #3 90 [=SUM(B14:Z14)]
15 Quizzer #4 80 [=SUM(B15:Z15)]
16 Quizzer #5 70 [=SUM(B16:Z16)]

There is other text in A17:A25. There is the word 'Total' in A25

26 Quizzer #6 60 [=SUM(B26:Z26)]
27 Quizzer #7 50 [=SUM(B27:Z27)]
28 Quizzer #8 40 [=SUM(B28:Z28)]
29 Quizzer #9 30 [=SUM(B29:Z29)]
30 Quizzer #10 20 [=SUM(B30:Z30)]
31 Quizzer #11 10 [=SUM(B31:Z31)]

Text in A33. Otherwise none.

A B C
43 1st high scorer 110 [=MAX(AA12:AA16,AA26:AA31)]
44 2nd high scorer 100 [=LARGE((AA12:AA16,AA26:AA31),2)]
45 3rd high scorer 90 [=LARGE((AA12:AA16,AA26:AA31),3)]
46 4th high scorer 80 [=LARGE((AA12:AA16,AA26:AA31),4)]
47 5th high scorer 70 [=LARGE((AA12:AA16,AA26:AA31),5)]
48 6th high scorer 60 [=LARGE((AA12:AA16,AA26:AA31),6)]
49 7th high scorer 50 [=LARGE((AA12:AA16,AA26:AA31),7)]
50 8th high scorer 40 [=LARGE((AA12:AA16,AA26:AA31),8)]

So right now my problem is to get B43:B50 to work. I need B43 to be the
name
of the high scorer (Quizzer#1) and B44 to be name 2nd high scorer
(Quizzer
#2) and so on. Can anybody help me or is this one too tricky?


"Sandy Mann" wrote:


"Sandy Mann" wrote in message
...

Any tied scores will be listed in list order.

Well my excuse is that I was being hassled by my wife to take her out
shopping. Shopping indeed!

No they won't! To get the tied scores in list order you will have to
SUBTRACT the ROW()/100000 not add it

=AA12-ROW()/1000 and copy down to AB28
--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


with @tiscali.co.uk


"Sandy Mann" wrote in message
...
I assume that it may be possible for two Quizzers to have the same
score
so
you will have to ensure that no two score are exactly the same. The
easiest way of doing that is to enter in AB12:AB28, (or some other
column
if you are already using that one), =AA12+ROW()/100000 and copy down
to
AB28 then hide Column AB

B42 enter the formula:

=INDEX($A$12:$A$28,MATCH(LARGE($AB$12:$AB$28,ROW()-11),$AB$12:$AB$28,0))

Any tied scores will be listed in list order.

The results will list the Quizzers in nlist order untill enries are
made
in AA12:AA28. If you want them to be blank untill all scores are
entered
the enclose the formula in an IF() statement:

=IF(COUNT($AA$12:$AA$28)<17,"",INDEX($A$12:$A$28, MATCH(LARGE($AB$12:$AB$28,ROW()-11),$AB$12:$AB$28,0)))

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


with @tiscali.co.uk


"damanwitdaplan" wrote in
message ...
Thank you so much for your help!

But now I have yet another problem that has similar results.

I need the individual results too. So right now I have.

In A12 "Quizzer #1" and the results (points) of that quizzer in
AA12.
In A13 "Quizzer #2" and the results of that quizzer in AA13.
In A14 "Quizzer #3" and the results of that quizzer in AA14
In A24 "Quizzer #4" and the results of that quizzer in AA24
In A25 "Quizzer #5" and the results of that quizzer in AA25
In A26 "Quizzer #6" and the results of that quizzer in AA26
In A 27 "Quizzer #7, and the results of that quizzer in AA27
In A28 "Quizzer #8" and the results of that quizzer in AA28

Results
B42
B43
B44
B45
B46
B47
B48
B49

In C42 I have the following formula
=MAX(AA12:AB14,AA24:AB28)

In C43 I have
=LARGE((AA12:AB14,AA24:AB28),2)

In C44 I have
=LARGE((AA12:AB14,AA24:AB28),3)

And so on and so on. But I need the quizzer's name (in text) with
the
highest number of points to be displayed in B42. In other words.

Results
B C
42 Quizzer #4 145 points
43 Quizzer #2 70 points
44 Quizzer #7 55 points

And so on.

In other words, I have the C column figured out but I just need
help
with
the B column. Can anybody help me?