Series Alphabetically Based On Unique List

muhammad susanto

Well-known Member
Joined
Jan 8, 2013
Messages
2,089
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
hi all..

how to make series alphabetically based on unique adjacent cell...


[TABLE="class: tableizer-table"]
<thead>[TR="class: tableizer-firstrow"]
[TH]order/desired[/TH]
[TH]data[/TH]
[/TR]
</thead><tbody> [TR]
[TD]A[/TD]
[TD]apple[/TD]
[/TR]
[TR]
[TD]B[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]banana[/TD]
[/TR]
[TR]
[TD]C[/TD]
[TD]banana[/TD]
[/TR]
[TR]
[TD]D[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]D[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]D[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]etc..[/TD]
[TD]avocado[/TD]
[/TR]
[TR]
[TD] [/TD]
[TD]blackberry[/TD]
[/TR]
[TR]
[TD] [/TD]
[TD]blackberry[/TD]
[/TR]
[TR]
[TD] [/TD]
[TD]blackberry[/TD]
[/TR]
</tbody>[/TABLE]

my target in column order/desired
any help greatly appreciated..

m.susanto
 
Last edited:

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
[TABLE="class: cms_table_tableizer-table"]
<tbody>[TR="class: cms_table_tableizer-firstrow"]
[TH="align: center"]order/desired[/TH]
[TH="align: center"]data[/TH]
[/TR]
[TR]
[TD]1[/TD]
[TD]apple[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]banana[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]banana[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]apricot[/TD]
[/TR]
[TR]
[TD]etc..[/TD]
[TD]avocado[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]blackberry[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]blackberry[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]blackberry[/TD]
[/TR]
</tbody>[/TABLE]
i thinkthis more simple...change alphabet with series number
 
Upvote 0
Try this:-
Code:
[COLOR="Navy"]Sub[/COLOR] MG16Apr00
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range, c, Temp [COLOR="Navy"]As[/COLOR] Range
[COLOR="Navy"]Set[/COLOR] Rng = Range("B2", Range("B" & Rows.Count).End(xlUp))
c = 1
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng
    [COLOR="Navy"]If[/COLOR] Not Temp [COLOR="Navy"]Is[/COLOR] Nothing [COLOR="Navy"]Then[/COLOR]
        [COLOR="Navy"]If[/COLOR] Not Dn.Value = Temp.Value [COLOR="Navy"]Then[/COLOR] c = c + 1
    [COLOR="Navy"]End[/COLOR] If
    Dn.Offset(, -1).Value = c
    [COLOR="Navy"]Set[/COLOR] Temp = Dn
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
You can do this without using VBA. Assuming your table starts at A1, put a value of 1 in cell A2. Put the following formula in cell A3 and copy down as necessary: =IF(B3=B2,A2,A2+1)
 
Upvote 0

Forum statistics

Threads
1,223,891
Messages
6,175,229
Members
452,621
Latest member
Laura_PinksBTHFT

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