I am using excel 2010 and I am having the following text in one cell:
Hash Rates
44Th/s
485Mh/s
432Mh/s
7Th/s
365Mh/s
33Th/s
3.1Th/s
6Th/s
10Gh/s
240kh/s
24.5Th/s
160kh/s
I would like to separate the number from the text. For example for 44Th/s
, I would like to get 44
and Th/s
.
I tried creating a helper cell go get the position of the number and text with the following formula:
=MIN(FIND({0;1;2;3;4;5;6;7;8;9};E2&"0123456789"))
As a result I am now trying to separate the text from the number with:
=RIGHT(E2;LEN(E2)-L2+1)
However, I only get the initial text back:
Hash Rates
44Th/s
485Mh/s
432Mh/s
Any suggestions how to separate text from number?
I appreciate your replies!