이 솔루션은 3 개의 숫자로 공백을 구분하여 3 개의 숫자로 1 개의 문자열을 나누는 것입니다.
교훈적인 목적을 위해 다음을 고려하십시오.
| A | B | C | D | E |
_____|_________|_________|_________|_________|_________|
| | | | | |
1 |123 45 67| | | | |
_____|_________|_________|_________|_________|_________|
| | | | | |
2 | | | | | |
_____|_________|_________|_________|_________|_________|
| | | | | |
3 | | | | | |
_____|_________|_________|_________|_________|_________|
| | | | | |
4 | | | | | |
_____|_________|_________|_________|_________|_________|
그래서 우리는 다음 공식을 돕기 위해 그렇게 할 수 있습니다.
For B1, where we start our search in A1 string - first character: =1
For C1, where is the first space in A1: =SEARCH(" ";A1;B1)
For D1, where is the second space in A1: =SEARCH(" ";A1;C1)
For E1, the length of string in A1: =LEN(A1)
그리고 무엇을 원하십니까?
For B2, to get first number: =SUBSTITUTE(A1;C1;C3-C1+1;"")
For C2, to get second number: =EXTRACT(A1;C1+1;D1-C1-1)
For D2, to get third number: =SUBSTITUTE(A1;B1;C2;"")
원하는 경우 B2 : D2의 공식에 포함 된 내용을 포함하여 B1 : E1의 보조 공식을 제거 할 수 있습니다.