Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Related table in measure returns no value if one of the tables returns no rows

I have the following measure which works perfrectly when rows are reutned from both tables but when one table returns no rows there is no response not even "Blank".

 

I would like to in the event that one of the tables returns no rows  display "0".

 

Dax meaure

Test = Calculate(

          Countrows(tablea),

           Filter(relatedtable(tableb), and ([Status] = "In Stock", [substatus] = "Available")), tablea[object_type] = 12)

Tableb is not returning any rows as there is no match for [Status] = "In Stock", [substatus] = "Available"

 

Thanks

 

1 ACCEPTED SOLUTION
_elbpower
Resolver III
Resolver III

VAR FilteredTableB = FILTER( RELATEDTABLE(tableb), [Status] = "In Stock" && [substatus] = "Available" ) RETURN IF( COUNTROWS(FilteredTableB) > 0, CALCULATE( COUNTROWS(tablea), FilteredTableB, tablea[object_type] = 12 ), 0 )

View solution in original post

1 REPLY 1
_elbpower
Resolver III
Resolver III

VAR FilteredTableB = FILTER( RELATEDTABLE(tableb), [Status] = "In Stock" && [substatus] = "Available" ) RETURN IF( COUNTROWS(FilteredTableB) > 0, CALCULATE( COUNTROWS(tablea), FilteredTableB, tablea[object_type] = 12 ), 0 )

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.