
- DAX Functions Tutorial
- DAX Functions - Home
- DAX Functions - Introduction
- DAX Parameter Naming Conventions
- Description Structure
- DAX Functions - Aggregation
- DAX Functions - Filter
- DAX Functions - Time Intelligence
- DAX Functions - Date and Time
- DAX Functions - Information
- DAX Functions - Logical
- Math & Trigonometric Functions
- DAX Functions - Parent & Child
- DAX Functions - Statistical
- DAX Functions - Text
- DAX Functions - Other
- DAX Functions Useful Resources
- DAX Functions - Quick Guide
- DAX Functions - Useful Resources
- DAX Functions - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
DAX Text - EXACT function
Description
Compares two text strings and returns TRUE if they are exactly the same, FALSE otherwise.
EXACT is case sensitive, but ignores formatting differences.
Syntax
EXACT (<text1>, <text2>)
Parameters
Sr.No. | Parameter & Description |
---|---|
1 |
text1 The first text string or column that contains text. |
2 |
text2 The second text string or column that contains text. |
Return Value
TRUE or FALSE.
Remarks
You can use EXACT function to test the text being entered into a document.
Example
= EXACT(Results[Sport], [Sport])
returns TRUE, if the value in Sport column in Results table match with the value in Sport column.
dax_functions_text.htm
Advertisements