Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In excel sheet I've got ceels with some words. At the end of every word i
got 2 chars: 0D0A and i want to delete them. Please tell me how do that. I tried everything, please help me !!! :( May be someone have nice macro ?! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub ReplaceStuff()
Selection.Replace _ What:=vbCrLf, _ Replacement:="", _ LookAt:=xlPart, _ SearchOrder:=xlByRows, _ MatchCase:=False End Sub -- Regards, Tom Ogilvy "Mariusz" wrote: In excel sheet I've got ceels with some words. At the end of every word i got 2 chars: 0D0A and i want to delete them. Please tell me how do that. I tried everything, please help me !!! :( May be someone have nice macro ?! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this formula (say your text is in A1):
=SUBSTITUTE(SUBSTITUTE(A1,CHAR(13),""),CHAR(10),"" ) Regards, Stefi €žMariusz€ť ezt Ă*rta: In excel sheet I've got ceels with some words. At the end of every word i got 2 chars: 0D0A and i want to delete them. Please tell me how do that. I tried everything, please help me !!! :( May be someone have nice macro ?! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
remove last word | New Users to Excel | |||
How to remove spaces from a word in a cell | Excel Discussion (Misc queries) | |||
Remove complete row containing a single word | Excel Worksheet Functions | |||
Remove the word 'total' from subtotals | Excel Discussion (Misc queries) | |||
How to remove a word from dictionary? | Excel Discussion (Misc queries) |