Re: How to find the most SEQUENTIAL occurring numbers in 1 column

rebel123

Active Member
Joined
Apr 18, 2017
Messages
345
Office Version
  1. 365
Platform
  1. MacOS
Re: How to find the most SEQUENTIAL occurring numbers in 1 column

[h=2]how do i sort the numbers in a row in numerical order?[/h]
For example the data looks like this and starts at C2 (I re-sorted it),
so how do I get the data to read "1" on L2, "4" on M2, "10" on N2, "18" on N2, and "26" on O2.
All of those numbers are without parentheses of course. Because the correct numerical
order for these is 1-4-10-18-26

C2 D2 E2 F2 G2 H2 I2 J2 K2
12618104

<tbody>
</tbody>

 

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.
Re: How to find the most SEQUENTIAL occurring numbers in 1 column

L2
=small(c2:k2,1)

m2
=small(c2:k2,2)

n2
=small(c2:k2,3)

o2
=small(c2:k2,4)

p2
=small(c2:k2,5)
 
Last edited:
Upvote 0
Re: How to find the most SEQUENTIAL occurring numbers in 1 column

Copy L2 to the right.
Excel Workbook
CDEFGHIJKLMNOP
21261810414101826
April
 
Upvote 0
Re: How to find the most SEQUENTIAL occurring numbers in 1 column

Copy L2 to the right.
April

CDEFGHIJKLMNOP
21 26 18 10 414101826

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:14px;"><col style="width:31px;"><col style="width:21px;"><col style="width:35px;"><col style="width:21px;"><col style="width:32px;"><col style="width:21px;"><col style="width:31px;"><col style="width:14px;"><col style="width:14px;"><col style="width:14px;"><col style="width:21px;"><col style="width:21px;"><col style="width:21px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
L2=SMALL($C$2:$K$2,COLUMNS($C:C))

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4



STRANGE I TRIED BOTH IN GOOGLE SHEETS AND THE FIRST
FEW CELLS WORKED BUT I GOT THESE SAME RESULTS

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
1426#NUM!#NUM!

<colgroup><col style="width: 64px"><col width="64"><col width="64"><col width="64"><col width="64"></colgroup><tbody>
</tbody>
 
Upvote 0
Re: How to find the most SEQUENTIAL occurring numbers in 1 column

STRANGE I TRIED BOTH IN GOOGLE SHEETS AND THE FIRST
FEW CELLS WORKED BUT I GOT THESE SAME RESULTS

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
1426#NUM!#NUM!

<tbody>
</tbody>

I have trouble getting a lot of stuff to work in google sheets.
The formula worked for me in excel
 
Upvote 0
Re: How to find the most SEQUENTIAL occurring numbers in 1 column

I'm guessing you may have omitted the $ signs in the formulas changing the absolute column references to relative column references. So when you dragged the formulas across, the column references in the formulas changed.
 
Upvote 0

Forum statistics

Threads
1,213,539
Messages
6,114,221
Members
448,554
Latest member
Gleisner2

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