Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Apostrophes in Cell

I create a formula in a cell, I take the result (a number) and copy (values
to get rid of the formula) it into a cell to the left. When done there is an
apostrophe at the beginning of the number.

How can I get rid of this apostrophe with find/replace command. I have tried
everything, it just comes back teling me it can not find a data...


PS.

I'm doing this with about 33,000 lines of data.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
j j is offline
external usenet poster
 
Posts: 128
Default Apostrophes in Cell

Can you send the formula?

"Megadrone" wrote:

I create a formula in a cell, I take the result (a number) and copy (values
to get rid of the formula) it into a cell to the left. When done there is an
apostrophe at the beginning of the number.

How can I get rid of this apostrophe with find/replace command. I have tried
everything, it just comes back teling me it can not find a data...


PS.

I'm doing this with about 33,000 lines of data.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Apostrophes in Cell

If you don't mind a little VBA:

Sub tic_killer()
Set rr = ActiveSheet.UsedRange.SpecialCells(xlCellTypeConst ants, xlTextValues)
For Each r In rr
If r.PrefixCharacter = "'" Then
r.Value = r.Value
End If
Next
End Sub

this will replace all apostrophe'd values with non-apostrophe values
--
Gary's Student
gsnu200707


"Megadrone" wrote:

I create a formula in a cell, I take the result (a number) and copy (values
to get rid of the formula) it into a cell to the left. When done there is an
apostrophe at the beginning of the number.

How can I get rid of this apostrophe with find/replace command. I have tried
everything, it just comes back teling me it can not find a data...


PS.

I'm doing this with about 33,000 lines of data.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default Apostrophes in Cell

Try Data Text to columns Finish on the column.


On Feb 21, 5:40 pm, Megadrone
wrote:
I create a formula in a cell, I take the result (a number) and copy (values
to get rid of the formula) it into a cell to the left. When done there is an
apostrophe at the beginning of the number.

How can I get rid of this apostrophe with find/replace command. I have tried
everything, it just comes back teling me it can not find a data...

PS.

I'm doing this with about 33,000 lines of data.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Apostrophes in Cell

A simple solution to a simple problem.

Thank You that worked great, just what I was looking for.

"Lori" wrote:

Try Data Text to columns Finish on the column.


On Feb 21, 5:40 pm, Megadrone
wrote:
I create a formula in a cell, I take the result (a number) and copy (values
to get rid of the formula) it into a cell to the left. When done there is an
apostrophe at the beginning of the number.

How can I get rid of this apostrophe with find/replace command. I have tried
everything, it just comes back teling me it can not find a data...

PS.

I'm doing this with about 33,000 lines of data.




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
Apostrophes and Sorting [email protected] Excel Discussion (Misc queries) 3 October 23rd 06 02:01 PM
Apostrophes in numbers with 16 characters Guilherme Loretti Excel Discussion (Misc queries) 3 May 10th 06 02:47 PM
Removing errant apostrophes C Glenn Excel Worksheet Functions 4 October 14th 05 05:39 PM
Dealing with hidden apostrophes... MavrikGandalf Excel Discussion (Misc queries) 1 July 26th 05 09:43 PM
Problem using 'PROPER' with apostrophes borobutch Excel Worksheet Functions 1 January 16th 05 01:10 PM


All times are GMT +1. The time now is 06:52 PM.

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"