Excel VLOOKUP 함수
VLOOKUP 함수의 사용법, 구문, 대표적인 활용 패턴을 이해하고 ExcelGPT로 실제 워크북 구조에 맞게 수식을 조정할 수 있습니다.
VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])lookup_value필수VLOOKUP의 인수 lookup_value. 설명(원문): The value to search for in the first column of the table.
table_array필수VLOOKUP의 인수 table_array. 설명(원문): The table or range that contains both lookup and return values.
col_index_num필수VLOOKUP의 인수 col_index_num. 설명(원문): The column number within the table to return.
range_lookup선택VLOOKUP의 인수 range_lookup. 설명(원문): Optional TRUE or FALSE for approximate or exact match behavior.
예시
=VLOOKUP(A2, $H$2:$K$100, 3, FALSE)VLOOKUP의 일반적인 사용을 보여줍니다. 설명(원문): Searches for the product ID in the first column of the table and returns the third column value.
=VLOOKUP(B2, $M$2:$N$8, 2, TRUE)VLOOKUP의 일반적인 사용을 보여줍니다. 설명(원문): Uses approximate matching to map a sales value to the correct commission percentage.
자주 하는 실수
VLOOKUP의 인수 순서, 데이터 유형, 참조 범위가 올바른지 확인하세요.
범위, 빈 셀, 오류 값, 동적 배열 결과가 수식에 영향을 주지 않는지 점검하세요.
전체 워크북에 적용하기 전에 몇 개의 샘플 행에서 먼저 검증하세요.