Multiple data points randomly placed into one column (down the line for each separate point)

StevenSamori

New Member
Joined
Jun 15, 2022
Messages
1
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
Platform
  1. Windows
Hi! Do you happen to know how to take all data points from every single row and column and copy and paste it into a single line (one long column) so I can export all the emails?

I have two images I upload (I did it manually but have 6,000 cells with email addresses and I need them in a straight line so I can upload to a CRM
 

Attachments

  • 3CC11F98-1632-4A29-B18E-A690636BE79F.png
    3CC11F98-1632-4A29-B18E-A690636BE79F.png
    140.8 KB · Views: 5
  • 78E25DCD-536C-46AD-93FB-AFCE4076FDB9.png
    78E25DCD-536C-46AD-93FB-AFCE4076FDB9.png
    186.4 KB · Views: 5

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Input Sheet1, output Sheet2.
Try this code
VBA Code:
Sub ListInColumn()
Dim Cel As Range, X As Long
For Each Cel In Sheets("Sheet1").UsedRange
If Cel <> "" Then X = X + 1: Sheets("Sheet2").Range("A" & X).Value = Cel
Next Cel
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,427
Messages
6,124,831
Members
449,190
Latest member
rscraig11

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