|
Excel - Rang - Bester des Jahres |
|
|
|
|
Geschrieben von: Marcus Rose
|
|
Sonntag, 02. August 2009 um 08:21 Uhr |
|
Habt ihr den Wunsch den Besten eines Jahres mit Hilfe von Excel zu ermitteln? Dieses Beispiel zeigt wie dieses Problem gelöst werden könnte: | | A | B | C | D | E | F | | 1 | Name | Endzeit | Jahr | Platz 1 | Platz 2 | Platz 3 | | 2 | Maurer Karl | 00:58:59 | 1992 | * | | | | 3 | Metzger Fritz | 00:59:02 | 1992 | | * | | | 4 | Schreiner Kurt | 00:59:03 | 1991 | | * | | | 5 | Müller Hans | 00:58:03 | 1991 | * | | | | 6 | Zimmermann Heinz | 01:02:45 | 1991 | | | * | | 7 | Maler Heiner | 01:05:01 | 1992 | | | * |
| Formeln der Tabelle | | Zelle | Formel | | D2 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C2;$B$2:$B$7);1)=B2;"*";"")} | | E2 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C2;$B$2:$B$7);2)=B2;"*";"")} | | F2 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C2;$B$2:$B$7);3)=B2;"*";"")} | | D3 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C3;$B$2:$B$7);1)=B3;"*";"")} | | E3 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C3;$B$2:$B$7);2)=B3;"*";"")} | | F3 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C3;$B$2:$B$7);3)=B3;"*";"")} | | D4 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C4;$B$2:$B$7);1)=B4;"*";"")} | | E4 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C4;$B$2:$B$7);2)=B4;"*";"")} | | F4 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C4;$B$2:$B$7);3)=B4;"*";"")} | | D5 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C5;$B$2:$B$7);1)=B5;"*";"")} | | E5 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C5;$B$2:$B$7);2)=B5;"*";"")} | | F5 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C5;$B$2:$B$7);3)=B5;"*";"")} | | D6 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C6;$B$2:$B$7);1)=B6;"*";"")} | | E6 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C6;$B$2:$B$7);2)=B6;"*";"")} | | F6 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C6;$B$2:$B$7);3)=B6;"*";"")} | | D7 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C7;$B$2:$B$7);1)=B7;"*";"")} | | E7 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C7;$B$2:$B$7);2)=B7;"*";"")} | | F7 | {=WENN(KKLEINSTE(WENN($C$2:$C$7=C7;$B$2:$B$7);3)=B7;"*";"")} |
| Enthält Matrixformel: Umrandende { } nicht miteingeben, sondern Formel mit STRG+SHIFT+RETURN abschließen! |
Bei diesem Excel Beispiel wird jeweils der Beste, der Zweitbeste oder der Drittbeste eines Jahres mit einem * markiert. Solltet ihr nur den Besten des Jahres ermitteln wollen, so kann man die verwendete Formel etwas abändern: | | A | B | C | D | | 1 | Name | Endzeit | Jahr | Bester | | 2 | Maurer Karl | 00:58:59 | 1992 | * | | 3 | Metzger Fritz | 00:59:02 | 1992 | | | 4 | Schreiner Kurt | 00:59:03 | 1991 | | | 5 | Müller Hans | 00:58:03 | 1991 | * | | 6 | Zimmermann Heinz | 01:02:45 | 1991 | | | 7 | Maler Heiner | 01:05:01 | 1992 | |
| Formeln der Tabelle | | Zelle | Formel | | D2 | {=WENN(MIN(WENN($C$2:$C$7=C2;$B$2:$B$7))=B2;"*";"")} | | D3 | {=WENN(MIN(WENN($C$2:$C$7=C3;$B$2:$B$7))=B3;"*";"")} | | D4 | {=WENN(MIN(WENN($C$2:$C$7=C4;$B$2:$B$7))=B4;"*";"")} | | D5 | {=WENN(MIN(WENN($C$2:$C$7=C5;$B$2:$B$7))=B5;"*";"")} | | D6 | {=WENN(MIN(WENN($C$2:$C$7=C6;$B$2:$B$7))=B6;"*";"")} | | D7 | {=WENN(MIN(WENN($C$2:$C$7=C7;$B$2:$B$7))=B7;"*";"")} |
| Enthält Matrixformel: Umrandende { } nicht miteingeben, sondern Formel mit STRG+SHIFT+RETURN abschließen! |
|