Extracting multiple numerical values from mixed characters in excel worksheet

0

I have a column containing cells with two numerical values, separated by an asterix...

e.g. 12.5*3.4

How can i extract the smaller number of the two into one new column, and the larger of the two into another separate new column?

Oliver M

Posted 2014-04-10T16:29:41.410

Reputation: 3

Answers

0

If your cell with the data is A1, this will give you the smaller of the two:

=MIN(LEFT(A1,FIND("*",A1)-1),RIGHT(A1,LEN(A1)-FIND("*",A1)))

To get the bigger, change the MIN to MAX.

Madball73

Posted 2014-04-10T16:29:41.410

Reputation: 2 175

THANKS, just saved me about 9 hours work, much appreciated!!!! – Oliver M – 2014-04-10T16:59:08.667