Resume duplicates (variables) in to one cell

lilloscar

New Member
Joined
Nov 27, 2016
Messages
37
In the image I resume a little bit what I need, the names will be different but repetitive, so I need to in to resume in a second cell the names.

12.11.2016-00.10.png
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.

Tetra201

MrExcel MVP
Joined
Oct 14, 2016
Messages
3,840
Perform the following steps:

- Make sure you have a column header, such as "Names";
- Go to Data --> Sort & Filter, click 'Advanced';
- In the field 'List range:' enter A:A;
- Click 'Copy to another location';
- In the field 'Copy to:' enter B1;
- Click 'Unique records only';
- Click 'OK'.
 
Upvote 0

lilloscar

New Member
Joined
Nov 27, 2016
Messages
37
Perform the following steps:

- Make sure you have a column header, such as "Names";
- Go to Data --> Sort & Filter, click 'Advanced';
- In the field 'List range:' enter A:A;
- Click 'Copy to another location';
- In the field 'Copy to:' enter B1;
- Click 'Unique records only';
- Click 'OK'.

Much appreciated, yesterday I was getting mad, and with your answer "Unique records" I googled a better solucion, found a macro and make it work to me like this:

Code:
lastrow = Cells(Rows.Count, "C").End(xlUp).row
    
    Sheets("Viajes").Range("C3:C" & lastrow).AdvancedFilter _
    Action:=xlFilterCopy, _
    CopyToRange:=Sheets("Viajes").Range("BK3"), _
    Unique:=True

I don't know if I can say the source but here is my solution.
Thank you
 
Upvote 0

Forum statistics

Threads
1,196,027
Messages
6,012,950
Members
441,740
Latest member
abaz21

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
Top