ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How do I delete hidden character in Excel? (https://www.excelbanter.com/excel-discussion-misc-queries/55522-how-do-i-delete-hidden-character-excel.html)

Isa

How do I delete hidden character in Excel?
 
Hi,
I have exported a table from Access 2000 to Excel 2000.
However, all the fields have a hidden character in front which is '
I am unable to do any formulas as it doesn't recognise it as a number but
has the number format.
I can't get rid of it when doing a search and replace either.
Can you help?

Thanks.

Nick H

How do I delete hidden character in Excel?
 
Isa,

You could try using the CLEAN worksheet function. e.g. if your data is
on Sheet1 create a new sheet and in Cell A1 of that sheet enter
=CLEAN('Sheet1'!A1) and drag-copy that formula to an area the same size
as the data on Sheet1.

Having done that you may want to copy the data on your new sheet and
pastespecial the values to get rid of the formulas.

HTH

Nick.


Peo Sjoblom

How do I delete hidden character in Excel?
 
Try a macro

Sub RemApostrophe()
Dim Rng As Range
Dim myCell As Range
Set Rng = Selection
For Each myCell In Rng.Cells
myCell.Value = myCell.Value
Next myCell
End Sub

press Alt + F11, click insertmodule and paste in the above, press Alt + Q

select the range and press Alt + F8 and double click the macro name

I don't think CLEAN will fix an apostrophe
Another way might be to select the column, do datatext to column and press
finish


--

Regards,

Peo Sjoblom


"Isa" wrote in message
...
Hi,
I have exported a table from Access 2000 to Excel 2000.
However, all the fields have a hidden character in front which is '
I am unable to do any formulas as it doesn't recognise it as a number but
has the number format.
I can't get rid of it when doing a search and replace either.
Can you help?

Thanks.




Michael

How do I delete hidden character in Excel?
 
Hi Isa. You might also use the Value function. This will transform the text
you exported from Access to a number. Assume your data is in A1 to A100, in
B1 type =Value(A1) and copy down to B100. Then copy B1:B100 and Paste
Special - Values into A1:A100. HTH
--
Sincerely, Michael Colvin


"Isa" wrote:

Hi,
I have exported a table from Access 2000 to Excel 2000.
However, all the fields have a hidden character in front which is '
I am unable to do any formulas as it doesn't recognise it as a number but
has the number format.
I can't get rid of it when doing a search and replace either.
Can you help?

Thanks.



All times are GMT +1. The time now is 12:28 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com