Excel Help Needed

Soldato
Joined
14 Oct 2007
Posts
2,738
I need to know if this is possible in Excel:

For my job, I am monitoring which machines are repaired the most to see if there is a common trend.

Example:

PC 1
PC 2
PC 3
PC 4
PC 5
All the way to 300

Everytime 1 is repaired, I put a number next to it.
Is there a way to create a list of the top 5 only so everytime I add a number to 1 of the PCs, the list updates, like when you auto-add numbers.

Hope this makes sense.
 
Starter for 10:

Add another column called Rank and use the Rank function. This gives a numerical ranking of the repaired quantities. If there are two or more that are identical then they both get the same rank. Example:

If A1 to A300 is used for your quantities:

B1=RANK(A1,$A$1:$A$300,1)
B2=RANK(A2,$A$1:$A$300,1)
....
B300=RANK(A300,$A$1:$A$300,1)

The 1 at the end can be changed to a 0 and this will affect the ranking from top to bottom:

Repair RANK = 1 RANK = 0
20 4 1
15 2 3
17 3 2
12 1 4
 
Aha, the final numbers have lost their spacing.

First column = Qty
Second Column = Rank using 1 as the order option
Third column = Rank using 0 as the order option
 
Starter for 10:

Add another column called Rank and use the Rank function. This gives a numerical ranking of the repaired quantities. If there are two or more that are identical then they both get the same rank. Example:

If A1 to A300 is used for your quantities:

B1=RANK(A1,$A$1:$A$300,1)
B2=RANK(A2,$A$1:$A$300,1)
....
B300=RANK(A300,$A$1:$A$300,1)

The 1 at the end can be changed to a 0 and this will affect the ranking from top to bottom:

Repair RANK = 1 RANK = 0
20 4 1
15 2 3
17 3 2
12 1 4

I regret asking, seems complicated lol...
 
Back
Top Bottom