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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
alisaleh
Advocate I
Advocate I

replacing blank with 0 cause the filter not to work correctly

Hi,

I have scenario where I have 1:*  active relationship from project table to JobCard table. I have created a measure to count the number of Job Card based on selected Project where I have project slicer. The DAX for the measure is as follows:

 

Total Project Job Card =
var temp= CALCULATE(COUNT('jobCard'[id]),'jobCard'[project] == SELECTEDVALUE('Project'[name]))
return If(ISBLANK(temp),0,temp)

 

The problem Im having is when I change the project in the slicer its always showing job cards from anohter

project with 0 values for total. If I remove the condition to replace blank with 0 then it filters correctly

and when I select project with no job cards nothing shows!! why this is happening desipite the measure is filter

by selected project? How do I fix it so it shows 0 for blanks when there is job card associated with the project and show nothing when there is no association.

1 ACCEPTED SOLUTION
tamerj1
Community Champion
Community Champion

@alisaleh 

Please try

Total Project Job Card =
VAR temp =
    CALCULATE (
        COUNT ( 'jobCard'[id] ),
        'jobCard'[project] == SELECTEDVALUE ( 'Project'[name] )
    )
RETURN
    IF ( NOT ISEMPTY ( 'jobCard' ), COALESCE ( temp, 0 ) )

View solution in original post

6 REPLIES 6
alisaleh
Advocate I
Advocate I

Thanks. it put me on the right path.

@alisaleh Do you recall how you got the formula to work?  I was running into the issue where the is not empty excludes my blanks, so the coalesce never gets the chance to return the 0.  

tamerj1
Community Champion
Community Champion

Hi @jvirgi 

can you provide some exsmples?

@tamerj1 I found the issue.  Ill use the same names as the OP.  I adjusted your formula to put the Project table into the Not ISempty function rather than the jobcard table.   

 

My issue with the formula was we want to replace the blanks when that jobcard table is blank, so the function you had skips the coalesce in this case; but works well when putting the project table there. I think this was the same issue @alisaleh 

tamerj1
Community Champion
Community Champion

@alisaleh 

Please try

Total Project Job Card =
VAR temp =
    CALCULATE (
        COUNT ( 'jobCard'[id] ),
        'jobCard'[project] == SELECTEDVALUE ( 'Project'[name] )
    )
RETURN
    IF ( NOT ISEMPTY ( 'jobCard' ), COALESCE ( temp, 0 ) )

What an odd workaround but this answer is exactly what I needed today for this very issue.  I would have never figured this out.  Thanks.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.