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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
afbraga66
Helper III
Helper III

COUNT/COUNTROWS return 0 instead of blank

Hello,

 

I am currently have an issue with count/countrows. When they evaluate and return nothing it shows blank instead of 0.

I have 2 tables, a calendar table and a fact table with 10 rows.

afbraga66_0-1657876816753.png

I am trying to calculate the percentage of colum ORIT = "Y".

Lines ORIT2 = 
var _orit = CALCULATE(COUNTROWS(dataVN),dataVN[ORIT]="Y")

return if(ISBLANK(_orit),0,_orit)

The result is this. I don't want those extra lines that mean nothing.

afbraga66_2-1657876954162.png

The manufacturing data field comes from the calendar table.

How can I avoid this situation and get the desired result?

 

The .pbix file is in this link if you want to try - https://we.tl/t-bHGwtdUf5d


Thank you.

André

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @afbraga66 
Please try https://www.dropbox.com/t/Fm7RwOsIaqz2Duog

1.png

 

Lines ORIT2 =
IF (
    NOT ISEMPTY ( dataVN ),
    COALESCE ( CALCULATE ( COUNTROWS ( dataVN ), dataVN[ORIT] = "Y" ), 0 )
)

 

View solution in original post

6 REPLIES 6
vapid128
Solution Specialist
Solution Specialist

CALCULATE(COUNTROWS(dataVN),dataVN[ORIT]="Y") + 0

Genius

This is by far the fastest and cleanest solution so far.

tamerj1
Super User
Super User

Hi @afbraga66 
Please try https://www.dropbox.com/t/Fm7RwOsIaqz2Duog

1.png

 

Lines ORIT2 =
IF (
    NOT ISEMPTY ( dataVN ),
    COALESCE ( CALCULATE ( COUNTROWS ( dataVN ), dataVN[ORIT] = "Y" ), 0 )
)

 

HI @tamerj1 , It works thank you so much! Still, I'm intrigued on what is the role of ISEMPTY() and why without it, it doesn't work. Could you explain, please? Thank you.

@afbraga66 

If the table itself is empty in the current  filter context then you need to keep the result blank. You need to have it zero if only the filtered table by CALCULATE is blank. Just pay attention to the difference between the original table and the filtered table. 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors