Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default Paste Values not pasting numbers

I had a number of columns that contained formulas and i used the "Paste
Values" fuction to replace the formula. The problem is that the values are
not being treated like numbers. If I look at the values in the cells the
numbers appear with with the justification characters beside them. If I
manually remove the character or reinput the number it will then fuction as a
number. If i don't I cannot perform even simple calculations like SUM with
them. The results are incorrect. Is there any way to remove these characters
accross many cells at the same time? I've tried to change the formatting and
deselecting all justifications and that doesen't work either. Ive never seen
this before, a number that looks like a number but isn't a number.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Paste Values not pasting numbers

================================================== ===============
Your Numbers don't behave (like numbers)
Niek Otten, May 11, 2006

Your numbers sort incorrectly, are not included in SUMs, cause #VALUE! results in formulas, cannot be found in LOOKUPs, etc.
In short:

Your Numbers look like Numbers, but they really are Text.
Sure! You formatted them as numbers, but alas, formatting afterwards doesn't help. Believe me, they are Text!

Here's a checklist which will help you solve most known cases. Make a copy of your workbook before trying! Always use Excel's
ISNUMBER() function to check your cells; maybe you solved your problem in the first step!

· Format an empty cell as Number. Enter the number 1 in it. EditCopy.
Select your "numbers". EditPaste Special, check Multiply. Hopefully your cells are "real" Numbers now
· If that doesn't help, there may be spaces in your "numbers". You can use the LEN() function to compare the number
of characters that Excel sees in the cell with the number of characters you see. If you suspect spaces, use Excel's TRIM()
function to remove them
· If that doesn't help, there may be nonprintable characters in your "numbers". You can use Excel's CLEAN() function
to remove most of them
· If that doesn't help, there may be non-breaking spaces in your "numbers" (mostly acquired from Web Pages). Use
David McRitchie's TRIMALL() function to remove them. It can be downloaded he
http://www.mvps.org/dmcritchie/excel/join.htm#trimall

================================================== ===============

--
Kind regards,

Niek Otten
Microsoft MVP - Excel


"Picman" wrote in message ...
|I had a number of columns that contained formulas and i used the "Paste
| Values" fuction to replace the formula. The problem is that the values are
| not being treated like numbers. If I look at the values in the cells the
| numbers appear with with the justification characters beside them. If I
| manually remove the character or reinput the number it will then fuction as a
| number. If i don't I cannot perform even simple calculations like SUM with
| them. The results are incorrect. Is there any way to remove these characters
| accross many cells at the same time? I've tried to change the formatting and
| deselecting all justifications and that doesen't work either. Ive never seen
| this before, a number that looks like a number but isn't a number.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default Paste Values not pasting numbers

How do i avoid this issue in the future?

"Niek Otten" wrote:

================================================== ===============
Your Numbers don't behave (like numbers)
Niek Otten, May 11, 2006

Your numbers sort incorrectly, are not included in SUMs, cause #VALUE! results in formulas, cannot be found in LOOKUPs, etc.
In short:

Your Numbers look like Numbers, but they really are Text.
Sure! You formatted them as numbers, but alas, formatting afterwards doesn't help. Believe me, they are Text!

Here's a checklist which will help you solve most known cases. Make a copy of your workbook before trying! Always use Excel's
ISNUMBER() function to check your cells; maybe you solved your problem in the first step!

· Format an empty cell as Number. Enter the number 1 in it. EditCopy.
Select your "numbers". EditPaste Special, check Multiply. Hopefully your cells are "real" Numbers now
· If that doesn't help, there may be spaces in your "numbers". You can use the LEN() function to compare the number
of characters that Excel sees in the cell with the number of characters you see. If you suspect spaces, use Excel's TRIM()
function to remove them
· If that doesn't help, there may be nonprintable characters in your "numbers". You can use Excel's CLEAN() function
to remove most of them
· If that doesn't help, there may be non-breaking spaces in your "numbers" (mostly acquired from Web Pages). Use
David McRitchie's TRIMALL() function to remove them. It can be downloaded he
http://www.mvps.org/dmcritchie/excel/join.htm#trimall

================================================== ===============

--
Kind regards,

Niek Otten
Microsoft MVP - Excel


"Picman" wrote in message ...
|I had a number of columns that contained formulas and i used the "Paste
| Values" fuction to replace the formula. The problem is that the values are
| not being treated like numbers. If I look at the values in the cells the
| numbers appear with with the justification characters beside them. If I
| manually remove the character or reinput the number it will then fuction as a
| number. If i don't I cannot perform even simple calculations like SUM with
| them. The results are incorrect. Is there any way to remove these characters
| accross many cells at the same time? I've tried to change the formatting and
| deselecting all justifications and that doesen't work either. Ive never seen
| this before, a number that looks like a number but isn't a number.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Paste Values not pasting numbers

If you paste to an area which has not been used before, it shouldn't be a problem.
If it has been used before, Select the area and format as General.
Pasting from websites or from other applications often requires additional work, as described, afterwards.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel


"Picman" wrote in message ...
| How do i avoid this issue in the future?
|
| "Niek Otten" wrote:
|
| ================================================== ===============
| Your Numbers don't behave (like numbers)
| Niek Otten, May 11, 2006
|
| Your numbers sort incorrectly, are not included in SUMs, cause #VALUE! results in formulas, cannot be found in LOOKUPs,
etc.
| In short:
|
| Your Numbers look like Numbers, but they really are Text.
| Sure! You formatted them as numbers, but alas, formatting afterwards doesn't help. Believe me, they are Text!
|
| Here's a checklist which will help you solve most known cases. Make a copy of your workbook before trying! Always use
Excel's
| ISNUMBER() function to check your cells; maybe you solved your problem in the first step!
|
| · Format an empty cell as Number. Enter the number 1 in it. EditCopy.
| Select your "numbers". EditPaste Special, check Multiply. Hopefully your cells are "real" Numbers now
| · If that doesn't help, there may be spaces in your "numbers". You can use the LEN() function to compare the
number
| of characters that Excel sees in the cell with the number of characters you see. If you suspect spaces, use Excel's TRIM()
| function to remove them
| · If that doesn't help, there may be nonprintable characters in your "numbers". You can use Excel's CLEAN()
function
| to remove most of them
| · If that doesn't help, there may be non-breaking spaces in your "numbers" (mostly acquired from Web Pages). Use
| David McRitchie's TRIMALL() function to remove them. It can be downloaded he
| http://www.mvps.org/dmcritchie/excel/join.htm#trimall
|
| ================================================== ===============
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
|
| "Picman" wrote in message ...
| |I had a number of columns that contained formulas and i used the "Paste
| | Values" fuction to replace the formula. The problem is that the values are
| | not being treated like numbers. If I look at the values in the cells the
| | numbers appear with with the justification characters beside them. If I
| | manually remove the character or reinput the number it will then fuction as a
| | number. If i don't I cannot perform even simple calculations like SUM with
| | them. The results are incorrect. Is there any way to remove these characters
| | accross many cells at the same time? I've tried to change the formatting and
| | deselecting all justifications and that doesen't work either. Ive never seen
| | this before, a number that looks like a number but isn't a number.
|
|
|


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
pasting a forumla w/o the paste/special/value jc3000 Excel Discussion (Misc queries) 1 June 21st 07 02:13 PM
pasting a forumla w/o the paste/special/value NewGuy Excel Discussion (Misc queries) 0 June 20th 07 11:29 PM
How flip a selection before pasting - Paste special ruks Excel Discussion (Misc queries) 2 May 31st 06 06:38 PM
Paste function is greyed out in the toolbar and I can't use ctl V - worksheet won't allow pasting Bob Reynolds Excel Discussion (Misc queries) 3 December 15th 05 03:24 PM
Pasting numbers and formulas without pasting format. Dan Excel Discussion (Misc queries) 3 March 27th 05 03:47 AM


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