Excel: extracting a number from mixed content cell

2

How would one extract a number starting with a "£" sign from a cell containing alphanumeric characters?

Example: extracting £450,000 from A1 and placing in B1. See image for example text

enter image description here

user15163

Posted 2014-12-22T22:55:27.190

Reputation: 23

Question was closed 2015-01-28T19:40:15.567

Answers

0

If we have a space after the number, then in B1 enter:

=MID(A1,FIND("£",A1,1)+1,9999)

and in C1 enter:

=MID(B1,1,FIND(" ",B1)-1)

For example:

enter image description here

Gary's Student

Posted 2014-12-22T22:55:27.190

Reputation: 15 540