이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
UNIQUE(array, [by_col], [exactly_once])The UNIQUE function extracts a list of distinct values from a specified range or array. It can be configured to compare rows or columns and can optionally filter for values that appear only once.
=UNIQUE(A2:A6)결과: Unique list
Returns a list of all distinct values found in the range A2:A6.
No, UNIQUE treats 'Apple' and 'apple' as the same value.