Events
Apr 8, 3 PM - May 28, 7 AM
Sharpen your AI skills and enter the sweepstakes to win a free Certification exam
Register now!This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:
Calculated column
Calculated table
Measure
Visual calculation
Checks if a value is not text (blank cells are not text), and returns TRUE
or FALSE
.
ISNONTEXT(<value>)
Term | Definition |
---|---|
value |
The value you want to check. |
TRUE
if the value is not text or blank; FALSE
if the value is text.
An empty string is considered text.
This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.
The following examples show the behavior of the ISNONTEXT function.
//RETURNS: Is Non-Text
= IF(ISNONTEXT(1), "Is Non-Text", "Is Text")
//RETURNS: Is Non-Text
= IF(ISNONTEXT(BLANK()), "Is Non-Text", "Is Text")
//RETURNS: Is Text
= IF(ISNONTEXT(""), "Is Non-Text", "Is Text")
Events
Apr 8, 3 PM - May 28, 7 AM
Sharpen your AI skills and enter the sweepstakes to win a free Certification exam
Register now!