ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   New Users to Excel (https://www.excelbanter.com/new-users-excel/)
-   -   add alpha letter to column of numbers (https://www.excelbanter.com/new-users-excel/125083-add-alpha-letter-column-numbers.html)

-John W.

add alpha letter to column of numbers
 
I have a column of part numbers that I want to re-identify with a "W" in
front of the number. There has to be a quick way of doing this but
everything I have tried fails.
Any advice??


CLR

add alpha letter to column of numbers
 
One way is to CONCATENATE.........using a helper column, say column B, put
this in B1 and copy down

="W"&A1

Then do copy PasteSpecial Values on Column B to remove the
formulas........then delete column A if you wish......

It can also be done with VBA code, without using a helper column, if that
method is of interest.......


Vaya con Dios,
Chuck, CABGx3



"-John W." <-John wrote in message
...
I have a column of part numbers that I want to re-identify with a "W" in
front of the number. There has to be a quick way of doing this but
everything I have tried fails.
Any advice??




Teethless mama

add alpha letter to column of numbers
 
Custom Format:
"W"0


"-John W." wrote:

I have a column of part numbers that I want to re-identify with a "W" in
front of the number. There has to be a quick way of doing this but
everything I have tried fails.
Any advice??


T. Valko

add alpha letter to column of numbers
 
Here's a simple macro:

Sub AddW()

Dim cell As Range
For Each cell In Selection
If cell.Value < "" Then
cell.Value = "W" & cell.Value
Else: cell.Value = cell.Value
End If

Next cell

End Sub

Select the range of part numbers then run the macro.

Biff

"-John W." <-John wrote in message
...
I have a column of part numbers that I want to re-identify with a "W" in
front of the number. There has to be a quick way of doing this but
everything I have tried fails.
Any advice??




-John W.

add alpha letter to column of numbers
 
Thanks!!!

"-John W." wrote:

I have a column of part numbers that I want to re-identify with a "W" in
front of the number. There has to be a quick way of doing this but
everything I have tried fails.
Any advice??


-John W.

add alpha letter to column of numbers
 
Thanks!!

"Teethless mama" wrote:

Custom Format:
"W"0


"-John W." wrote:

I have a column of part numbers that I want to re-identify with a "W" in
front of the number. There has to be a quick way of doing this but
everything I have tried fails.
Any advice??


-John W.

add alpha letter to column of numbers
 
Thanks!!

"T. Valko" wrote:

Here's a simple macro:

Sub AddW()

Dim cell As Range
For Each cell In Selection
If cell.Value < "" Then
cell.Value = "W" & cell.Value
Else: cell.Value = cell.Value
End If

Next cell

End Sub

Select the range of part numbers then run the macro.

Biff

"-John W." <-John wrote in message
...
I have a column of part numbers that I want to re-identify with a "W" in
front of the number. There has to be a quick way of doing this but
everything I have tried fails.
Any advice??






All times are GMT +1. The time now is 01:56 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com