#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default data conversion

Please advise how I can convert a number that comes over as '40593 from our
Italian firm. How do I take the ' off of the number. I have 3000 rows of
numbers that came through like that Please help.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 376
Default data conversion

Hi Candida

In a blank cell enter 1
Copy that cellmark your block of dataPaste SpecialMultiply
--
Regards
Roger Govier

Candida wrote:
Please advise how I can convert a number that comes over as '40593 from our
Italian firm. How do I take the ' off of the number. I have 3000 rows of
numbers that came through like that Please help.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default data conversion

hi
1 way..
enter a 1(one) in a cell off to the side. copy it. then select the cell with
the apostropheed number. paste special multiply.
that should get rid of the apostrophe

regards
FSt1

"Candida" wrote:

Please advise how I can convert a number that comes over as '40593 from our
Italian firm. How do I take the ' off of the number. I have 3000 rows of
numbers that came through like that Please help.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default data conversion

"Candida" wrote:
Please advise how I can convert a number that
comes over as '40593 from our Italian firm. How
do I take the ' off of the number.


In Excel 2003, select the cells, click on Data Text to Columns. In this
case, you can breeze through the wizard by clicking Next Next Finish.
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default data conversion

That did work for some except I have numbers like '01.002.50.001 for part
numbers and it did not work for those. Any other ideas?

"Joe User" wrote:

"Candida" wrote:
Please advise how I can convert a number that
comes over as '40593 from our Italian firm. How
do I take the ' off of the number.


In Excel 2003, select the cells, click on Data Text to Columns. In this
case, you can breeze through the wizard by clicking Next Next Finish.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default data conversion

this works for single digits like '45632 however I have some more complex
numbers such as '01.02354.321 or '01.54211 and this doesn't seem to work for
those numbers.
Please help.

"FSt1" wrote:

hi
1 way..
enter a 1(one) in a cell off to the side. copy it. then select the cell with
the apostropheed number. paste special multiply.
that should get rid of the apostrophe

regards
FSt1

"Candida" wrote:

Please advise how I can convert a number that comes over as '40593 from our
Italian firm. How do I take the ' off of the number. I have 3000 rows of
numbers that came through like that Please help.

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 376
Default data conversion

Hi Candida

But those values are Text. They cannot be numeric.
If you used the suggestion by Joe, Data Text to columns, then that does
work, the only difference being your numerics end up right justified,
whilst the other Text values are right justified

If it is the presence of the single quote that is giving you the
problem, but you still want everything to remain left justified, then
you could use another column and enter
=SUBSTITUE(A1,"'","")
and copy down.
Then mark the whole of the new columnCopyPaste SpecialValues
and your data will not have the leading '

--
Regards
Roger Govier

Candida wrote:
That did work for some except I have numbers like '01.002.50.001 for part
numbers and it did not work for those. Any other ideas?

"Joe User" wrote:

"Candida" wrote:
Please advise how I can convert a number that
comes over as '40593 from our Italian firm. How
do I take the ' off of the number.

In Excel 2003, select the cells, click on Data Text to Columns. In this
case, you can breeze through the wizard by clicking Next Next Finish.

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default data conversion

Candida wrote:
That did work for some except I have numbers like
'01.002.50.001 for part numbers and it did not work
for those. Any other ideas?



"Roger Govier" wrote:
But those values are Text. They cannot be numeric.


I concur. I would go further to suggest that they should remain text.

Modifying and treating them as numbers can create new problems. For
example, leading zeros go away and long numbers might be displayed
differently unless you change the cell format. And very long "numbers"
(more than 15 significant digits) might be changed irrevocably.


the only difference being your numerics end up right
justified, whilst the other Text values are right
justified


Ah, text is left justified by default.

If that's the problem, change cell Alignment under Format Cells, setting
Horizontal to Right.


If it is the presence of the single quote that is giving
you the problem


..... I cannot imagine why it would ....


then you could use another column and enter
=SUBSTITUE(A1,"'","")
and copy down. Then mark the whole of the new
columnCopyPaste SpecialValues and your data will
not have the leading '


First, it is sufficient to copy the cells, then use Edit or right-click
Paste Special Values (in Excel 2003).

Second, I do not believe the SUBSTITUTE really does anything. The leading
apostrophe is transparent; it is not considered part of the value. For
example, FIND(A1,"'") returns an error; and we write
IF(A1="01.002.50.001",...), not IF(A1="'01.002.50.001",...).


----- original message -----

"Roger Govier" wrote in message
...
Hi Candida

But those values are Text. They cannot be numeric.
If you used the suggestion by Joe, Data Text to columns, then that does
work, the only difference being your numerics end up right justified,
whilst the other Text values are right justified

If it is the presence of the single quote that is giving you the problem,
but you still want everything to remain left justified, then you could use
another column and enter
=SUBSTITUE(A1,"'","")
and copy down.
Then mark the whole of the new columnCopyPaste SpecialValues
and your data will not have the leading '

--
Regards
Roger Govier

Candida wrote:
That did work for some except I have numbers like '01.002.50.001 for part
numbers and it did not work for those. Any other ideas?

"Joe User" wrote:

"Candida" wrote:
Please advise how I can convert a number that
comes over as '40593 from our Italian firm. How
do I take the ' off of the number.
In Excel 2003, select the cells, click on Data Text to Columns. In
this case, you can breeze through the wizard by clicking Next Next
Finish.


  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default data conversion

Candida wrote:
That did work for some except I have numbers like
'01.002.50.001 for part numbers and it did not work
for those. Any other ideas?



"Roger Govier" wrote:
But those values are Text. They cannot be numeric.


I concur. I would go further to suggest that they should remain text.

Modifying and treating them as numbers can create new problems. For
example, leading zeros go away and long numbers might be displayed
differently unless you change the cell format. And very long "numbers"
(more than 15 significant digits) might be changed irrevocably.


the only difference being your numerics end up right
justified, whilst the other Text values are right
justified


Ah, text is left justified by default.

If that's the problem, change cell Alignment under Format Cells, setting
Horizontal to Right.


If it is the presence of the single quote that is giving
you the problem


..... I cannot imagine why it would ....


then you could use another column and enter
=SUBSTITUE(A1,"'","")
and copy down. Then mark the whole of the new
columnCopyPaste SpecialValues and your data will
not have the leading '


First, it is sufficient to copy the cells, then use Edit or right-click
Paste Special Values (in Excel 2003).

Second, I do not believe the SUBSTITUTE really does anything. The leading
apostrophe is transparent; it is not considered part of the value. For
example, FIND(A1,"'") returns an error; and we write
IF(A1="01.002.50.001",...), not IF(A1="'01.002.50.001",...).


----- original message -----

"Roger Govier" wrote in message
...
Hi Candida

But those values are Text. They cannot be numeric.
If you used the suggestion by Joe, Data Text to columns, then that does
work, the only difference being your numerics end up right justified,
whilst the other Text values are right justified

If it is the presence of the single quote that is giving you the problem,
but you still want everything to remain left justified, then you could use
another column and enter
=SUBSTITUE(A1,"'","")
and copy down.
Then mark the whole of the new columnCopyPaste SpecialValues
and your data will not have the leading '

--
Regards
Roger Govier

Candida wrote:
That did work for some except I have numbers like '01.002.50.001 for part
numbers and it did not work for those. Any other ideas?

"Joe User" wrote:

"Candida" wrote:
Please advise how I can convert a number that
comes over as '40593 from our Italian firm. How
do I take the ' off of the number.
In Excel 2003, select the cells, click on Data Text to Columns. In
this case, you can breeze through the wizard by clicking Next Next
Finish.


  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default data conversion

"Candida" wrote:
this works for single digits like '45632 however
I have some more complex numbers such as
'01.02354.321 or '01.54211 and this doesn't
seem to work for those numbers.


But those should be left as text. What problem does that cause for you?

If the problem is that text is left-justified by default, change cell
Alignment under Format Cells, setting Horizontal to Right.

Otherwise, what problem does the apostrophe cause for you?

The leading apostrophe is transparent; it is not considered part of the
value. For example, you would write IF(A1="01.02354.321",...), not
IF(A1="'01.02354.321",...).

The leading apostrophe is just special syntax that tells Excel not to
consider the numeric text as a number, which should be what you want.

Treating them as numbers can create new problems. For example, leading
zeros go away and long numbers might be displayed differently unless you
change the cell format. And very long "numbers" (more than 15 significant
digits) might be changed irrevocably.


----- original message -----

"Candida" wrote:

this works for single digits like '45632 however I have some more complex
numbers such as '01.02354.321 or '01.54211 and this doesn't seem to work for
those numbers.
Please help.

"FSt1" wrote:

hi
1 way..
enter a 1(one) in a cell off to the side. copy it. then select the cell with
the apostropheed number. paste special multiply.
that should get rid of the apostrophe

regards
FSt1

"Candida" wrote:

Please advise how I can convert a number that comes over as '40593 from our
Italian firm. How do I take the ' off of the number. I have 3000 rows of
numbers that came through like that Please help.



  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 376
Default data conversion

Joe
My suggestion for Substitute, does not in any way change the value from
being a Text value.

There is a visual difference of what is displayed in the formula bar,
before and after carrying out the Substitutepaste SpecialValues.

I cannot understand why the OP would be concerned about the leading ',
but they obviously were, else they wouldn't have posted back.

I was merely suggesting a way of removing it.
--
Regards
Roger Govier

Joe User wrote:
Candida wrote:
That did work for some except I have numbers like
'01.002.50.001 for part numbers and it did not work
for those. Any other ideas?



"Roger Govier" wrote:
But those values are Text. They cannot be numeric.


I concur. I would go further to suggest that they should remain text.

Modifying and treating them as numbers can create new problems. For
example, leading zeros go away and long numbers might be displayed
differently unless you change the cell format. And very long "numbers"
(more than 15 significant digits) might be changed irrevocably.


the only difference being your numerics end up right
justified, whilst the other Text values are right
justified


Ah, text is left justified by default.

If that's the problem, change cell Alignment under Format Cells, setting
Horizontal to Right.


If it is the presence of the single quote that is giving
you the problem


.... I cannot imagine why it would ....


then you could use another column and enter
=SUBSTITUE(A1,"'","")
and copy down. Then mark the whole of the new
columnCopyPaste SpecialValues and your data will
not have the leading '


First, it is sufficient to copy the cells, then use Edit or right-click
Paste Special Values (in Excel 2003).

Second, I do not believe the SUBSTITUTE really does anything. The
leading apostrophe is transparent; it is not considered part of the
value. For example, FIND(A1,"'") returns an error; and we write
IF(A1="01.002.50.001",...), not IF(A1="'01.002.50.001",...).


----- original message -----

"Roger Govier" wrote in message
...
Hi Candida

But those values are Text. They cannot be numeric.
If you used the suggestion by Joe, Data Text to columns, then that
does work, the only difference being your numerics end up right
justified, whilst the other Text values are right justified

If it is the presence of the single quote that is giving you the
problem, but you still want everything to remain left justified, then
you could use another column and enter
=SUBSTITUE(A1,"'","")
and copy down.
Then mark the whole of the new columnCopyPaste SpecialValues
and your data will not have the leading '

--
Regards
Roger Govier

Candida wrote:
That did work for some except I have numbers like '01.002.50.001 for
part numbers and it did not work for those. Any other ideas?

"Joe User" wrote:

"Candida" wrote:
Please advise how I can convert a number that
comes over as '40593 from our Italian firm. How
do I take the ' off of the number.
In Excel 2003, select the cells, click on Data Text to Columns.
In this case, you can breeze through the wizard by clicking Next
Next Finish.


  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default data conversion

there are many situations where your suggestion to just leave the apostrophe
in does not work, for example one of many, lookup will not return matches if
reference list does not have apostrophies

"Joe User" wrote:

Candida wrote:
That did work for some except I have numbers like
'01.002.50.001 for part numbers and it did not work
for those. Any other ideas?



"Roger Govier" wrote:
But those values are Text. They cannot be numeric.


I concur. I would go further to suggest that they should remain text.

Modifying and treating them as numbers can create new problems. For
example, leading zeros go away and long numbers might be displayed
differently unless you change the cell format. And very long "numbers"
(more than 15 significant digits) might be changed irrevocably.


the only difference being your numerics end up right
justified, whilst the other Text values are right
justified


Ah, text is left justified by default.

If that's the problem, change cell Alignment under Format Cells, setting
Horizontal to Right.


If it is the presence of the single quote that is giving
you the problem


..... I cannot imagine why it would ....


then you could use another column and enter
=SUBSTITUE(A1,"'","")
and copy down. Then mark the whole of the new
columnCopyPaste SpecialValues and your data will
not have the leading '


First, it is sufficient to copy the cells, then use Edit or right-click
Paste Special Values (in Excel 2003).

Second, I do not believe the SUBSTITUTE really does anything. The leading
apostrophe is transparent; it is not considered part of the value. For
example, FIND(A1,"'") returns an error; and we write
IF(A1="01.002.50.001",...), not IF(A1="'01.002.50.001",...).


----- original message -----

"Roger Govier" wrote in message
...
Hi Candida

But those values are Text. They cannot be numeric.
If you used the suggestion by Joe, Data Text to columns, then that does
work, the only difference being your numerics end up right justified,
whilst the other Text values are right justified

If it is the presence of the single quote that is giving you the problem,
but you still want everything to remain left justified, then you could use
another column and enter
=SUBSTITUE(A1,"'","")
and copy down.
Then mark the whole of the new columnCopyPaste SpecialValues
and your data will not have the leading '

--
Regards
Roger Govier

Candida wrote:
That did work for some except I have numbers like '01.002.50.001 for part
numbers and it did not work for those. Any other ideas?

"Joe User" wrote:

"Candida" wrote:
Please advise how I can convert a number that
comes over as '40593 from our Italian firm. How
do I take the ' off of the number.
In Excel 2003, select the cells, click on Data Text to Columns. In
this case, you can breeze through the wizard by clicking Next Next
Finish.


.

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
Increase Your Business By Data Conversion, Data Format and Data EntryServices in India Data Entry India Excel Worksheet Functions 1 March 31st 08 12:51 PM
Save 20% On Data Conversion and Data Formats Services by Data EntryIndia Data Entry India Excel Discussion (Misc queries) 0 March 31st 08 12:00 PM
Daily data to weekly data conversion in Excel? Poorak Kashyap Excel Worksheet Functions 2 March 28th 08 12:50 PM
Data Entry Online, Data Format, Data Conversion and Data EntryServices through Data Entry Outsourcing [email protected] Excel Discussion (Misc queries) 0 March 20th 08 12:45 PM
Daily data to weekly data conversion in Excel? dlanc Excel Worksheet Functions 1 August 9th 05 02:12 AM


All times are GMT +1. The time now is 01:44 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"