johnbrownbaby
New Member
- Joined
- Dec 9, 2015
- Messages
- 38
Hello,
I have the text in a cell:
I wanted to extract the numbers and place them in two separate columns:
I tried this formula
but I got all the numbers: 240485212827
Can you help me separate out the numbers to get the table shown above?
Thanks!
I have the text in a cell:
eFine: 2404852 eFood: 12827 |
I wanted to extract the numbers and place them in two separate columns:
Test 1 | Amp |
2404852 | 12827 |
I tried this formula
=IF(SUM(LEN(A8)-LEN(SUBSTITUTE(A8, {"0","1","2","3","4","5","6","7","8","9"}, "")))>0, SUMPRODUCT(MID(0&A8, LARGE(INDEX(ISNUMBER(--MID(A8,ROW(INDIRECT("$1:$"&LEN(A8))),1))* ROW(INDIRECT("$1:$"&LEN(A8))),0), ROW(INDIRECT("$1:$"&LEN(A8))))+1,1) * 10^ROW(INDIRECT("$1:$"&LEN(A8)))/10),"")
but I got all the numbers: 240485212827
Can you help me separate out the numbers to get the table shown above?
Thanks!