Extracting a number from a multiline-entry
On Mon, 22 Mar 2010 02:27:28 -0700 (PDT), andreashermle
wrote:
Dear Experts:
I would like to extract a number from multi-line excel cells. The
cells have the following make-up
123456(manual line break = Alt+Enter)
sample text (manual line break = Alt+Enter)
sample text
In the above example I would like to extract the number located
immediately before the first manual line break and display it in a
separate cell. Can this be done using a formula/function?
Help is much appreciated. Thank you very much in advance.
Regards, Andreas
And since this question is in a programming group, the equivalent VBA
expression could be:
Left(Range("a1"), InStr(Range("a1"), Chr(10)) - 1)
or even:
Split(Range("a1"), Chr(10))(0)
--ron
|