I have "1 hour", "2 hours", in a column in Calc, and I would like to extract the numbers only. I've tried VALUE(A9), but it doesn't work.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

This is an Excel solution but my understanding is that Calc supports most Excel functions.

If your number always appears at the beginning of a text string and is followed by at least one space, then:

=VALUE(LEFT(A1,SEARCH(" ",A1)-1))

will extract the value from such a string in cell A1.

link|improve this answer
3  
=VALUE(LEFT(A1;SEARCH(" ";A1)-1)) +1. – Prince John Wesley Jul 26 '11 at 4:06
Thanks, guys! Works! – Michael Jul 26 '11 at 4:20
Thanks @John, for the correct Calc syntax. – Mike Fitzpatrick Jul 26 '11 at 4:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.