Use this formula in each row (Copy down for A2 A3 etc)
=A1&";"
Then highlight the results and copy. Then paste special selecting "Values", into an empty column
Main Topics
Browse All TopicsI want to insert semicolon next to the column value. I have 480 rows in a singl column and I want to insert semicolons at the end of each value.
Like
a;
b;
c;
...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is a macro that will append the semicolons. Before running it, you will need to select the first cell to be appended. The macro will then append a semicolon to all cells in that column. If a semicolon is already appended, then a new one will not be added.
To install a sub in a regular module sheet:
1) ALT + F11 to open the VBA Editor
2) Use the Insert...Module menu item to create a blank module sheet
3) Paste the suggested code in this module sheet
4) ALT + F11 to return to the spreadsheet
To run a sub or macro:
5) ALT + F8 to open the macro window
6) Select the macro
7) Click the "Run" button
Optional steps to assign a shortcut key to your macro:
8) Repeat steps 5 & 6, then press the "Options" button
9) Enter the character you want to use (Shift + character will have fewer conflicts with existing shortcuts)
10) Enter some descriptive text telling what the macro does in the "Description" field
11) Click the "OK" button
If the above procedure doesn't work, then you need to change your macro security setting. To do so, open the Tools...Macro...Security menu item. Choose Medium, then click OK.
Business Accounts
Answer for Membership
by: byundtPosted on 2009-11-02 at 10:12:26ID: 25721896
Hello vmandem,
The simplest way is to insert a blank column, then use a formula:
=A1 & ";"
You can copy this formula down to the end of your data by clicking the little square at the bottom right of the selection marquee.
The final step would be to copy the cells with the formula, then Edit...Paste Special...Values on top of the original values. You may then delete the column with the formula.
Regards,
Brad