Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I get a large block of data from another source that is in text format that I need converted to values in order to perform calculations. Beyond creating a second worksheet linked to the first, I'm at a loss (e.g. =Value(Sheet1!A1)). Any suggestions using VBA? TIA! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
1st way: Format the block of data as general or number; Insert a number 1 (or 0) into any free cell, and copy it; Select your data; Paste Special - check Multiply (or Add), and click OK. 2nd way: Select a range from column; Format the range as general or number; From Data menu, select TextToColumns, continue with delimited, remove all delimiters (in case you have not only numbers in selected range), set column format to General, and click Finish. (When you have only numbers in text format - without any spaces etc. - then simply TextToColumnsFinish). -- Arvi Laanemets ( My real mail address: arvil<attarkon.ee ) "JEFF" wrote in message ... Hello, I get a large block of data from another source that is in text format that I need converted to values in order to perform calculations. Beyond creating a second worksheet linked to the first, I'm at a loss (e.g. =Value(Sheet1!A1)). Any suggestions using VBA? TIA! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Embarrassingly simple.... Thank you.
"Arvi Laanemets" wrote: Hi 1st way: Format the block of data as general or number; Insert a number 1 (or 0) into any free cell, and copy it; Select your data; Paste Special - check Multiply (or Add), and click OK. 2nd way: Select a range from column; Format the range as general or number; From Data menu, select TextToColumns, continue with delimited, remove all delimiters (in case you have not only numbers in selected range), set column format to General, and click Finish. (When you have only numbers in text format - without any spaces etc. - then simply TextToColumnsFinish). -- Arvi Laanemets ( My real mail address: arvil<attarkon.ee ) "JEFF" wrote in message ... Hello, I get a large block of data from another source that is in text format that I need converted to values in order to perform calculations. Beyond creating a second worksheet linked to the first, I'm at a loss (e.g. =Value(Sheet1!A1)). Any suggestions using VBA? TIA! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Converting text to numerical values | New Users to Excel | |||
Converting Text into Values | Excel Worksheet Functions | |||
Converting values to text | New Users to Excel | |||
Converting Text Values to Dates | Excel Discussion (Misc queries) | |||
vba is converting text to values! | Excel Programming |