🌐
DAX Guide
dax.guide › isempty
ISEMPTY – DAX Guide
January 30, 2026 - -- ISEMPTY checks that a table contains no rows -- -- This example retrieves the products with sales in 2007 and -- no sales in 2008 by using ISEMPTY EVALUATE VAR ProductsSales = ADDCOLUMNS ( TOPN ( 10, VALUES ( 'Product'[Product Name] ) ), "HasSalesIn2007", NOT ISEMPTY ( CALCULATETABLE ( Sales, ...
🌐
Microsoft Learn
learn.microsoft.com › en-us › dax › isempty-function-dax
ISEMPTY function (DAX) - DAX | Microsoft Learn
ISEMPTY(<table_expression>) True if the table is empty (has no rows), if else, False. This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.
🌐
SPGuides
spguides.com › power-bi-dax-isblank-vs-isempty
ISBLANK vs ISEMPTY in Power BI DAX
January 7, 2026 - Check Filtered Table Empty = ISEMPTY( FILTER( 'Products Ordered', 'Products Ordered'[Quantity] > 1000 ) ) Now, to check the result, go to the Report view, add a card visual, then add the above measure to it.
🌐
Interactive Chaos
interactivechaos.com › en › dax › function › isempty
ISEMPTY | Interactive Chaos
The ISEMPTY function returns a Boolean. ... A table is considered empty if it does not contain any rows. ... In this example we start from a Products table containing a list of products including the Color field that indicates the color of each product.
🌐
TutorialsPoint
tutorialspoint.com › home › dax_functions › dax isempty function
DAX ISEMPTY Function
May 1, 2017 - Discover how to use the DAX ISEMPTY function for checking empty values in your datasets. Learn its syntax and applications.
🌐
SQLBI
sqlbi.com › articles › check-empty-table-condition-with-dax
Check Empty Table Condition with DAX - SQLBI
August 17, 2020 - ISEMPTY ( CALCULATETABLE ( 'Internet Sales', 'Product Category'[Product Category Name] ) ) This syntax is simpler, meaningful and also faster. If you use DAXMD (query DAX on a Multidimensional model) the performance improvement offered by ISEMPTY ...
🌐
Creatum GmbH
creatum.online › home › mastering the dax isempty function: an in-depth tutorial for data analysts
Mastering the DAX IsEmpty Function: An In-Depth Tutorial for Data Analysts | Creatum GmbH
January 16, 2025 - For instance: DAX Measure = IF(ISEMPTY(SUM(Sales[Total Sales])), 0, CALCULATE(SUM(Sales[Total Sales]))) This DAX expression ensures that if the total sales table is empty, it returns 0, thus preventing misleading zero values in your reports ...
🌐
YouTube
youtube.com › watch
Power BI DAX Function ISEmpty with IF Condition to test with the table is empty or not - YouTube
Power BI DAX Function isempty to find whether the table is empty or not and also you can combine it with IF condition to better communicate the message.Power...
Published   April 4, 2022
🌐
YouTube
youtube.com › sqlbi
ISEMPTY - DAX Guide - YouTube
ISEMPTY: Returns true if the specified table or table-expression is Empty.https://dax.guide/isempty/This video is part of DAX Guide, the online guide to all ...
Published   February 10, 2022
Views   3K
Find elsewhere
🌐
SQLBI
sqlbi.com › tv › isempty-dax-guide
ISEMPTY – DAX Guide - SQLBI
ISEMPTY: Returns true if the specified table or table-expression is Empty. https://dax.guide/isempty/
🌐
DAX Guide
dax.guide › isblank
ISBLANK – DAX Guide
5 days ago - In DAX there are different ways to test whether a table is empty. This test can be used in complex DAX expressions and this short article briefly discuss what are the suggested approaches from a performance perspective.
🌐
GitHub
github.com › MicrosoftDocs › query-docs › blob › main › query-languages › dax › isempty-function-dax.md
query-docs/query-languages/dax/isempty-function-dax.md at main · MicrosoftDocs/query-docs
ISEMPTY function (DAX) [!INCLUDEapplies-to-measures-columns-tables-visual-calculations] Checks if a table is empty. ISEMPTY(<table_expression>) Term · Definition · table_expression · A table reference or a DAX expression that returns a table. True if the table is empty (has no rows), if else, False.
Author   MicrosoftDocs
🌐
Microsoft Fabric Community
community.fabric.microsoft.com › t5 › Desktop › How-to-check-blank-and-empty-value-in-dax › td-p › 769723
Solved: How to check blank and empty value in dax - Microsoft Fabric Community
August 19, 2019 - Solved: Hi, I am using below DAX Return Type = var vTxt = IF(ISEMPTY(CALCULATETABLE(SAVO_QBR_TEMP, SAVO_QBR_TEMP[Return_Type] BLANK()))=False,
🌐
Medium
medium.com › microsoft-power-bi › isblank-vs-isempty-the-nothing-detection-duel-530f0e0eb9b0
ISBLANK vs ISEMPTY: The Nothing Detection Duel | by Bhanu Gautam | Power BI Masterclass | Medium
September 6, 2025 - Use ISBLANK for missing data in columns and calculated values, use ISEMPTY for filtered tables and relationship existence. This simple distinction prevents logical errors and ensures your conditional logic works correctly in all scenarios. Thanks for taking the time to read this article — I hope it brought you one step closer to mastering DAX and Power BI!
🌐
Medium
medium.com › @sreemala85 › demystifying-empty-spaces-understanding-the-differences-between-is-empty-and-is-blank-in-power-bi-6568f204073b
Demystifying Empty Spaces: Understanding the Differences Between IS EMPTY and IS BLANK in Power BI…
March 5, 2024 - Syntax: ISEMPTY(<table_expression>) Example : Is Products Table Empty = ISEMPTY(‘Products’) In this example, IS EMPTY checks if the ‘Products’ table has no rows, providing a True or False result.
🌐
Stack Overflow
stackoverflow.com › questions › 77174923 › how-to-test-if-a-related-column-is-neither-empty-nor-blank-in-dax
powerbi - How to test if a related column is neither empty nor blank in dax? - Stack Overflow
GR or UG = IF( AND(All_Combined_Terms_Bb_Course_ID[Catalog Number] >= 500, IF( OR(NOT(ISBLANK(RELATED(GR[AREA]))),NOT(ISEMPTY(RELATED(GR[AREA])))),"Graduate Courses", IF( AND(All_Combined_Terms_Bb_Course_ID[Catalog Number] < 500, IF(OR(NOT(ISBLANK(RELATED(UG[AREA]))),(NOT(ISEMPTY(RELATED(UG[AREA]))))),"Undergraduate Courses", "Neither" )) I know that nesting is often a problem, and that's probable here, too--but I'm getting an error I don't really understand how to deal with, too: "Parameter is not of the correct type" at the (not(isblank(related(xx[xxxx])))) sections. I'm trying to create the Dax formula in Power BI.
🌐
Gcomsolutions
gcomsolutions.com › home › isempty
ISEMPTY - Power BI Online Training
May 18, 2023 - Suppose you have a table called Customers that contains two columns - CustomerName and Country. You want to create a new calculated column called CountryIsEmpty that checks whether the Country column is empty or not.
🌐
FasterCapital
fastercapital.com › content › ISBLANK--ISBLANK--Dealing-with-Empty-Values-in-Power-BI-DAX.html
ISBLANK: ISBLANK: Dealing with Empty Values in Power BI DAX - FasterCapital
The DAX formula would be: ... - Example 2: If you're calculating a measure that averages sales amounts but want to exclude blank sales from the calculation, you could use: ... - Performance: Overuse of `ISBLANK` in complex measures can impact report performance, so it should be used judiciously. - Comparison with Other Functions: `ISBLANK` is often compared with `ISNULL` or `ISEMPTY...
🌐
Microsoft Learn
learn.microsoft.com › en-us › dax › isblank-function-dax
ISBLANK function (DAX) - DAX | Microsoft Learn
To learn more about best practices when working with BLANKS, see Avoid converting BLANKs to values in DAX. This formula computes the increase or decrease ratio in sales compared to the previous year. The example uses the IF function to check the value for the previous year's sales in order ...
🌐
Creatum GmbH
creatum.online › home › how to use dax if isblank: a step-by-step guide
How to Use DAX IF ISBLANK: A Step-by-Step Guide | Creatum GmbH
January 15, 2025 - Employing the IF function alongside the DAX ISBLANK check enables you to efficiently handle empty values within your datasets, improving clarity and insight, which is essential for making data-driven choices in today’s competitive environment. For example, when assessing sales performance, you might want to indicate ‘No Sales’ when the sales value is empty.