I have some code to put text into cells like this:
[tt]
Range("A" & intEcRow & ":" & strL & intEcRow).Value = strLine
[/tt]
where strLine as an array of values declared as String.
One of the columns get the values of:
[tt]
Total
1.11
1.1
1.0
1.01
See Proposal
See Proposal
1.10
0 [/tt]
and the column is formatted as Text because user wants to see 1.0 or 2.00
Now the user wnats to have the same information on another sheet and wants to see the numbers as numbers.
How can I convert:[tt]
'1.11
'1.1
'1.0
'1.01
'See Proposal
'See Proposal
'1.10
'0 [/tt]
(Single quotes are there becasue it is text)
to numbers:
[tt]
Total
1.11
1.1
1
1.01
See Proposal
See Proposal
1.10
0
[/tt]
I just want to adjust the column with the text to be numbers, I don't want to Copy/Paste special
Have fun.
---- Andy