Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi Julie, I tried your Code ------------------- Sub removeNY() For Each cell In Range("Sheet1!M:M") If cell.Value = "" Then Exit Sub If Right(cell, 3) = " Y" Or Right(cell, 3) = " N" Then cell.Value = Left(cell, Len(cell) - 1) End If Next End Su ------------------- I got it to run without errors, though it's not deleting anything. Th cells stay the same ![]() Frank I tried yours Code ------------------- sub foo() dim rng as range dim cell as range Dim res set rng=selection for each cell in rng res=application.trim(cell.value) if right(res,1)="N") or right(res,1)="Y" then cell.value=left(res,len(res)-1) end if next end sub ------------------- An got nowhere, sorry :( couln't get it to run at all -- Odysseu ----------------------------------------------------------------------- Odysseus's Profile: http://www.excelforum.com/member.php...fo&userid=1456 View this thread: http://www.excelforum.com/showthread.php?threadid=27412 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search/Match/Find ANY part of string to ANY part of Cell Value | Excel Worksheet Functions | |||
Delete part of a cell | Excel Worksheet Functions | |||
delete part of text from a cell | Excel Worksheet Functions | |||
How do I delete part of a text string in every cell it appears in | Excel Discussion (Misc queries) | |||
Delete Part of Cell? | Excel Programming |