|
| ||||||||||
| Tags: microsoft excel, microsoft office, office application, spreadsheet |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to get rid of single quote in Microsoft Excel sheet
|
|
#2
| |||
| |||
| Re: How to get rid of single quote in Microsoft Excel sheet
A single quote in excel is also an indicator that the cell will contain text only. It is used when you want to enter some mathematical expression a text. That is why the 'find' cannot find it! Try pressing ctrl+a, right click > paste special and formula. Repeat and paste special formats. That should do the trick. |
|
#3
| |||
| |||
| Re: How to get rid of single quote in Microsoft Excel sheet
If your cells with a single quote is in a column, you could try data|text to columns choose delimited (but uncheck all the delimiters) and finish. If your cells are spread out all over, you could use a macro. Select your range and run this: Code: Option Explicit Sub testme() Dim myCell As Range Dim myRng As Range Set myRng = Nothing On Error Resume Next Set myRng = Intersect(Selection, _ Selection.Cells.SpecialCells(xlCellTypeConstants)) On Error GoTo 0 If myRng Is Nothing Then MsgBox "no constants!" Exit Sub End If For Each myCell In myRng.Cells With myCell .Value = .Value End With Next myCell End Sub |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to get rid of single quote in Microsoft Excel sheet" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need help to get single quote in every cell of Excel | Hache hi | MS Office Support | 2 | 23-02-2012 12:17 PM |
| Not able to edit a lock sheet in Microsoft Excel | Tur^turro | MS Office Support | 3 | 25-01-2012 07:01 PM |
| How to recover a deleted sheet in Microsoft Excel 2007 | Al Kaholic | MS Office Support | 2 | 24-01-2012 06:44 PM |
| How to do Copy/Paste on protected work sheet in Microsoft Excel | Chini mao | MS Office Support | 1 | 14-01-2012 05:58 PM |
| Single quote precision parameter consider as String | RogerFielden | Technology & Internet | 3 | 24-04-2009 01:05 PM |