DAX Function Guide

EXACT
Empty image or helper icon

Sam McKay

CEO & Founder

How does the EXACT work?
The EXACT function (DAX) compares two text strings and returns TRUE if they are exactly the same, FALSE otherwise. EXACT is case-sensitive but ignores formatting differences.
EXACT Formula Syntax

EXACT (
     <text1>, <text2>
)

How do you use the EXACT?

You can use EXACT function to test text being entered into a document.
The EXACT function is quite useful when we wish to deal with case-sensitive data.

Related Blog Posts

Loading

Considerations when using the EXACT?

Arguments:

  1. Text1 (required argument) – This is the first string which we wish to join. It can be two text strings, numbers, or logical value.
  2. Text2 (required argument) – This is the second text string.

The EXACT function returns TRUE if the two strings are the same. The EXACT function returns FALSE if the two strings are different.

Related Video Tutorials

Loading

Formula examples using the EXACT

=EXACT(“apple”,”apple”)

=EXACT(A3,B3)

=EXACT(“Apple”,”apple”) // returns FALSE

Related Courses

Loading