Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
i have a column of different length part numbers and want to remove the last
letter if it is a "v" only..how do i do that? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming data is in column A, put this in a helper column and copy
down......... =IF(RIGHT(A1,1)="v",LEFT(A1,LEN(A1)-1),A1) then Copy PasteSpecial Values on that helper column and then replace your original column A with it...... Vaya con Dios, Chuck, CABGx3 "leo" wrote: i have a column of different length part numbers and want to remove the last letter if it is a "v" only..how do i do that? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Leo, Try this. =IF(RIGHT(A15,1)="v",LEFT(A15,LEN(A15)-1),"") HTH Steve -- SteveG ------------------------------------------------------------------------ SteveG's Profile: http://www.excelforum.com/member.php...fo&userid=7571 View this thread: http://www.excelforum.com/showthread...hreadid=502521 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() If the data is in cell A1, enter into B1 the following formula:- =IF(RIGHT(A1,1)="v",LEFT(A1,LEN(A1)-1),A1) -- Gary Brown ------------------------------------------------------------------------ Gary Brown's Profile: http://www.excelforum.com/member.php...o&userid=17084 View this thread: http://www.excelforum.com/showthread...hreadid=502521 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need to Improve Code Copying/Pasting Between Workbooks | Excel Discussion (Misc queries) | |||
Sort Excel Column on Fifth Character | Excel Worksheet Functions | |||
Counting Unique Part Numbers In A Range | Excel Worksheet Functions | |||
Return Count for LAST NonBlank Cell in each Row | Excel Worksheet Functions | |||
Copy a column in worksheet with a character change | Excel Worksheet Functions |