Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 788
Default removeing a ' symbol

I am trying to get rid of a ' symbol with out doing it manually. find
replace doesn't work. i tried
With ActiveCell.Characters(Start:=1, Length:=1).Delete, but the deletes the
' as well as the next character. any ideas?
  #2   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default removeing a ' symbol

hi,
i think you have launched yourself into an endless
tailchase.
I don't know why you are trying to remove the appostophe,
but excel may have put it there.
excel uses this symble to 1. mark it as text or 2.left
justify.
In any cell in excel, type anything. if it is a number, no
appostrophe. if it is letters, appostrophe and left
justified. next center the text. ' changed to ^. next
right justify the text. ^ changed to =.
excel puts the symble in and there is not much you can do
about it. excel does not consider this symbles as a
character which is why find and replace didn't work.
and why ActiveCell.Characters(Start:=1, Length:=1).Delete
seemed to act funny.
and even if you did get rid of, excel would put it right
back.
Why are you trying to remove it?

-----Original Message-----
I am trying to get rid of a ' symbol with out doing it

manually. find
replace doesn't work. i tried
With ActiveCell.Characters(Start:=1, Length:=1).Delete,

but the deletes the
' as well as the next character. any ideas?
.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default removeing a ' symbol

How about...

Option Explicit
Sub testme()

Dim myRng As Range
Dim myCell As Range

Set myRng = Nothing
On Error Resume Next
Set myRng = Intersect(Selection, _
Selection.Cells.SpecialCells(xlCellTypeConstants, _
xlTextValues))
On Error GoTo 0

If myRng Is Nothing Then
MsgBox "Select some cells with constant text"
Exit Sub
End If

For Each myCell In myRng.Cells
myCell.Value = myCell.Value
Next myCell
End Sub




Chris wrote:

I am trying to get rid of a ' symbol with out doing it manually. find
replace doesn't work. i tried
With ActiveCell.Characters(Start:=1, Length:=1).Delete, but the deletes the
' as well as the next character. any ideas?


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Type a symbol useing shortcut keys rather the insert a symbol RJD Excel Discussion (Misc queries) 2 December 23rd 09 06:28 PM
Euro symbol displays as dollar symbol in Excel BrendaM Excel Worksheet Functions 5 April 24th 09 03:43 PM
Removeing certian numbers from a row of numbers Claude Excel Discussion (Misc queries) 4 January 4th 08 09:54 PM
Removeing the Grand Total Line when subtotals are removed Melody Excel Discussion (Misc queries) 11 March 9th 07 06:09 PM
I need a symbol but "symbol" in the Insert menu is grayed-out. Nothappy Excel Discussion (Misc queries) 2 May 3rd 05 12:16 AM


All times are GMT +1. The time now is 05:32 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"