![]() |
Inserting Data
I have a column with license numbers in them. I have about 2000 rows in this
column. I need to insert a ; (semicolon) at the end of each license number. Is there a way I can do this without having to go through all 2000 rows? Thanks. |
Inserting Data
In a staging column, enter formula
=A1&";" and copy it down 2000 rows Select the staging row Copy Select A1 Paste Special Values HTH -- AP "CJ" a écrit dans le message de ... I have a column with license numbers in them. I have about 2000 rows in this column. I need to insert a ; (semicolon) at the end of each license number. Is there a way I can do this without having to go through all 2000 rows? Thanks. |
Inserting Data
If the license numbers are in column A, select column B and Insert Column.
Then, in B1 enter the formula =A1 & ";". Autofill that formula through all rows of column B. Then select column B and Edit Copy, then Edit Paste Special, select the Values radio button and click OK. If everything looks okay, you can delete column A and you'll have effectively appeneded a semicolon to each of the license numbers in column A. (If you may ever need the old version w/o the ; you should probably skip the delete step and keep both columns). "CJ" wrote: I have a column with license numbers in them. I have about 2000 rows in this column. I need to insert a ; (semicolon) at the end of each license number. Is there a way I can do this without having to go through all 2000 rows? Thanks. |
Inserting Data
try
Sub addsemicolontoend() For Each c In Selection c.NumberFormat = "@" If Len(c) 1 And IsNumeric(c) Then c.Value = c & ":" Next End Sub -- Don Guillett SalesAid Software "CJ" wrote in message ... I have a column with license numbers in them. I have about 2000 rows in this column. I need to insert a ; (semicolon) at the end of each license number. Is there a way I can do this without having to go through all 2000 rows? Thanks. |
Inserting Data
I would also go to menu format cells custom type 0";" then use
format painter to copy the same thru the 2000 rows |
Inserting Data
"elephant" wrote: I would also go to menu format cells custom type 0";" then use format painter to copy the same thru the 2000 rows Thanks for this. The others above helped me out with the general changes but then I couldn't figure out how to do dates because it would change it to a general format and the date would change to a 5 digit number but this fixed that. Thanks again. |
All times are GMT +1. The time now is 05:30 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com