order 2 non-adjacent columns

Mattia

New Member
Joined
May 20, 2018
Messages
7
Goodmorning everyone

In the attached file the data of our interest are in column A and column D where there are data, even repeated and empty cells.
The aim is to obtain a unique and alphabetically ordered list of the two columns without the use of service columns.
Expected results are in column H.
Thanks for your attention


https://www.dropbox.com/s/2r7fpmm8k990fv4/ordina%20due%20colonne.xlsx?dl=0
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Try this for results in column "H" :-
Code:
[COLOR="Navy"]Sub[/COLOR] MG01Sep13
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range, R [COLOR="Navy"]As[/COLOR] Range, Ray [COLOR="Navy"]As[/COLOR] Variant
[COLOR="Navy"]Set[/COLOR] Rng = Range("A2", Range("A" & Rows.Count).End(xlUp))
[COLOR="Navy"]Set[/COLOR] R = Union(Rng, Rng.Offset(, 3))
    [COLOR="Navy"]With[/COLOR] CreateObject("System.Collections.ArrayList")
        [COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] R
           [COLOR="Navy"]If[/COLOR] Not .contains(Dn.Value) And Dn.Value <> "" [COLOR="Navy"]Then[/COLOR]
                .Add Dn.Value
            [COLOR="Navy"]End[/COLOR] If
        [COLOR="Navy"]Next[/COLOR]
        .Sort
        Ray = .ToArray
    [COLOR="Navy"]End[/COLOR] With
Range("H2").Resize(UBound(Ray, 1) + 1).Value = Application.Transpose(Ray)
Regards Mick
 
Upvote 0
Buongiorno
grazie per l'attenzione ho sicuramente sbagliato a non menzionare che sto cercando una formula perché l'ho chiesto per puro spirito didattico e cioè trovare una formula senza colonne di servizio che faccia questo lavoro (con le colonne di servizio che posso raggiungere facilmente l 'obiettivo)
 
Upvote 0
Cross posted https://www.excelforum.com/excel-formulas-and-functions/1288288-order-2-non-adjacent-columns.html

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.

Also as this is an English language board, can you please keep all posts in English.
Thanks
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

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