SheetRocks
Documentation/Formulas/EXACT

EXACT

Compares two text strings and returns TRUE if they are exactly the same, FALSE otherwise

Syntax

EXACT(text1, text2)

Arguments

Argument Description Required
text1 The first text string Required
text2 The second text string Required

Examples

Exact match (case sensitive)

=EXACT("Happy", "Happy")
Result ⇒ true

Case sensitive no match

=EXACT("Cool", "cool")
Result ⇒ false

Different numbers

=EXACT(A1, A2)
Result ⇒ false
A
1 6.5
2 3.5

Related Functions

Other Text functions:


← Back to Formula Reference