HOW DO I ARRANGE IN EXCEL

peterappiahkubi

New Member
Joined
Jun 12, 2021
Messages
11
Office Version
  1. 2013
Platform
  1. Windows
KINDLY ASSIST ME WITH A FORMULA TO ARRANGE IN ORDER ACCORDING TO THEIR POSITIONS SO THAT THE STUDENT WITH THE 1ST POSITION COMES FIRST, FOLLOWED BY THE 2ND, THEN 3RD, 4TH ..... IN THAT ORDER IN EXCEL USING THE IMAGE ATTARCHED
 

Attachments

  • POSITIONS.PNG
    POSITIONS.PNG
    20.3 KB · Views: 11

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Did you try the sort function?

N.B. This site has a tool called XL2BB (Excel to Bulletin Board); it allows you to put an extract of your worksheet into your post. It allows the volunteer helpers to copy your data directly without having to manually retype everything from a picture. You're likely to get faster/better answers if you use it.

Instructions on using this tool can be found here: XL2BB Add-in
 
Upvote 0
Here is the XL2BB ...

Book1
ABCD
1S/NNAMETOTAL MARKSPOSITION
21APPIAH DWAAH JESUS6094TH
32APPIAH OSEI KWAME5109TH
43ASAMOAH JOSIAH FRIMPONG5867TH
54COBBINAH PHILIP6153RD
65KANKAM KINGSLEY6251ST
76LEH KOJO RAYMOND5778TH
87OPPONG BLESSING50710TH
98OWUSU LUCKY6182ND
109PABLO NELSON6006TH
1110YEBOAH KWAKU JONATHON6094TH
Sheet1
 
Upvote 0
You can try
Add an auxiliary column to the original data (you can hide this column)

Formula in the 'E2' cell
Code:
=LOOKUP(99^99,--(0&MID(D2,MIN(FIND({0,1,2,3,4,5,6,7,8,9},D2&1234567890)),ROW(INDIRECT("1:"&LEN(D2)+1)))))

Results:

The formula in the 'G2' cell
Code:
=INDEX($A$2:$A$11,MATCH(H2,$D$2:$D$11,0))

The formula in the 'H2' cell
Code:
=IF(SMALL($E$2:$E$100,ROW()-1)=1,SMALL($E$2:$E$100,ROW()-1)&"st",IF(SMALL($E$2:$E$100,ROW()-1)=2,SMALL($E$2:$E$100,ROW()-1)&"nd",IF(SMALL($E$2:$E$100,ROW()-1)=3,SMALL($E$2:$E$100,ROW()-1)&"rd",IF(SMALL($E$2:$E$100,ROW()-1)>=4,SMALL($E$2:$E$100,ROW()-1)&"th",""))))

The formula in the 'I2' cell (copy to the 'J' column)
Code:
=VLOOKUP($G2,$A$2:$C$11,COLUMN(B$1),FALSE)
 

Attachments

  • johnnyL.png
    johnnyL.png
    13.5 KB · Views: 3
Upvote 0
How about
+Fluff 1.xlsm
ABCDEFGHIJ
1S/NNAMETOTAL MARKSPOSITIONS/NNAMETOTAL MARKSPOSITION
21APPIAH DWAAH JESUS6094TH6255KANKAM KINGSLEY6251ST
32APPIAH OSEI KWAME5109TH6188OWUSU LUCKY6182ND
43ASAMOAH JOSIAH FRIMPONG5867TH6154COBBINAH PHILIP6153RD
54COBBINAH PHILIP6153RD6091APPIAH DWAAH JESUS6094TH
65KANKAM KINGSLEY6251ST60910YEBOAH KWAKU JONATHON6094TH
76LEH KOJO RAYMOND5778TH6009PABLO NELSON6006TH
87OPPONG BLESSING50710TH5863ASAMOAH JOSIAH FRIMPONG5867TH
98OWUSU LUCKY6182ND5776LEH KOJO RAYMOND5778TH
109PABLO NELSON6006TH5102APPIAH OSEI KWAME5109TH
1110YEBOAH KWAKU JONATHON6094TH5077OPPONG BLESSING50710TH
Lists
Cell Formulas
RangeFormula
F2:F11F2=LARGE($C$2:$C$11,ROWS(F$2:F2))
G2:J11G2=INDEX(A$2:A$11,AGGREGATE(15,6,(ROW($C$2:$C$11)-ROW($C$2)+1)/($C$2:$C$11=$F2),COUNTIFS($F$2:$F2,$F2)))
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0
Re Post #2. I said sort function meaning the built in functionality - Data Sort on Total Marks Largest of smallest

Aggregate_a.xlsm
ABCD
1S/NNAMETOTAL MARKSPOSITION
25KANKAM KINGSLEY6251ST
38OWUSU LUCKY6182ND
44COBBINAH PHILIP6153RD
51APPIAH DWAAH JESUS6094TH
610YEBOAH KWAKU JONATHON6094TH
79PABLO NELSON6006TH
83ASAMOAH JOSIAH FRIMPONG5867TH
96LEH KOJO RAYMOND5778TH
102APPIAH OSEI KWAME5109TH
117OPPONG BLESSING50710TH
3c
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,937
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top