Checks whether two text strings are exactly the same.
ฟังก์ชันนี้ทำงานใน Google Sheets เหมือนกับใน Excel — ไวยากรณ์และอาร์กิวเมนต์เดียวกัน
EXACT(text1, text2)The EXACT function compares two text strings and returns TRUE if they are identical, including case sensitivity. It ignores formatting and is useful for verifying data entries where capitalization matters.
=EXACT("Apple", "apple")ผลลัพธ์: FALSE
Returns FALSE because the function is case-sensitive.
=EXACT("Excel", "Excel")ผลลัพธ์: TRUE
Returns TRUE because both strings are identical.
Yes, unlike the standard equal sign (=) operator, EXACT is strictly case-sensitive.