I have a lot of data in a text file and I'm trying to figure out the fastest way to convert what are individual lines in the text file to a single cell entry.
Each Person has a number of entries that they may have entered, and I want each Person to have all the information entered in a single cell. So instead of having Bob's Name, Address, and Phone in three separate cells, I am trying to have Bob have a single cell, and each of those three entries should be on a new line WITHIN the cell.
So instead of this:
-----------------------
|Name: Bob |
-----------------------
|Address: 123 Main St. |
-----------------------
|Phone Number: 555-5555|
------------------------
| |
-----------------------
|Name: Jerry |
-----------------------
|Address: 355 Main St. |
------------------------
I want this:
-----------------------
|Name: Bob |
|Address: 123 Main St. |
|Phone Number: 555-5555|
------------------------
|Name: Jerry |
|Address: 355 Main St. |
------------------------
Here is a screen shot if it makes things clearer:
The left side is what is getting imported, the right is what I want
I would love if there was an automated way to do this (a macro or anything else) since I have to do this so often.
