cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
webportal
Impactful Individual
Impactful Individual

Why does COUNTROWS return EMPTY when it should return 0?

Why does this calculated column return an empty value, for rows that are equal to zero?

 

Number of Rows = 
VAR ThisIndex = 'Table'[Index]
RETURN
COUNTROWS(
    FILTER('OtherTable', 'OtherTable'[col] = ThisIndex)
) 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@webportal , for no rows it will return blank, you can add +0 if needed

 

Number of Rows = 
VAR ThisIndex = 'Table'[Index]
RETURN
COUNTROWS(
    FILTER('OtherTable', 'OtherTable'[col] = ThisIndex)
) +0

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@webportal , for no rows it will return blank, you can add +0 if needed

 

Number of Rows = 
VAR ThisIndex = 'Table'[Index]
RETURN
COUNTROWS(
    FILTER('OtherTable', 'OtherTable'[col] = ThisIndex)
) +0

 

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors