반응형
=TEXTJOIN("", TRUE, IF(ISNUMBER(MID(A1, ROW(INDIRECT("1:" & LEN(A1))), 1)), "", MID(A1, ROW(INDIRECT("1:" & LEN(A1))), 1)))
- 이 수식은 MID 함수를 사용하여 셀 값에서 각 문자를 추출하고 ISNUMBER를 사용하여 숫자인지 확인하고 숫자이면 빈 문자열을 반환합니다. 'TEXTJOIN' 함수는 숫자가 아닌 모든 문자를 단일 문자열로 연결합니다.
참고: 수식은 Excel 2019, Microsoft 365용 Excel 및 웹용 Excel에서 사용할 수 있는 'TEXTJOIN' 함수를 사용합니다. 이전 버전의 Excel을 사용하는 경우 다른 방법을 사용하여 문자를 연결해야 할 수 있습니다.
이 단계를 따르면 Excel 기능만 사용하여 숫자를 제외하고 셀에서 텍스트만 추출하는 원하는 결과를 얻을 수 있습니다.
- This formula uses the MID function to extract each character from the cell value, checks if it is numeric using ISNUMBER, and returns an empty string if it is a number. The TEXTJOIN function concatenates all the non-numeric characters into a single string.
- Press Ctrl+Shift+Enter to enter the formula as an array formula. The cell will display the extracted text without numbers.
Note: The formula uses the TEXTJOIN function, which is available in Excel 2019, Excel for Microsoft 365, and Excel for the web. If you're using an earlier version of Excel, you may need to use a different method to concatenate the characters.
By following these steps, you can achieve the desired result of excluding numbers and extracting only the text from a cell using only Excel functions.
반응형