Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All,
Thanks Advanced !!!
Problem : I was getting value like cross join when connecting three tables. This prob is occurs when i was replace Isblank with 0 in DAX Measure.
Importance : Please help me . Its crash my all previous projects also. Really am in big trouble. What is the solution for this ?
1. Relationship
Salary from Employee Table - Direct column
Salary from DAX Calculation
If i remove the Isblank condition its working fine for me.
Hi @Baskar,
The blank value is different from 0 value. When you aggregate values in a visual, the result 0 will be regarded as a numerical value and displayed while the blank will be ignored.
Thanks,
Yuliana Gu
Replace 0 with BLANK().
Hi @BhaveshPatel thanks for your reply.
when i remove 0 am getting the result that i know. But i want to know what is logic runs behind the DAX.
Yes , I willl help you on this case.
Let me know if u used any measures ?
If yes the prob is on the measure caluculation.
Eg. In that measure are u used anywhere replace blank with some other value ?
If yes , that is the prob .
or else pls share your scenario
Hi @Baskar,
Thanks for the quick response! Appreciate it.
Yes, I have used isblank DAX and replacing it with 0. Here is my measure:
Relevant Opportunities Closed = IF(ISBLANK(CALCULATE([Total Opportunities],FILTER(d_Opportunity,d_Opportunity[Opportunity Status]="CLOSED"))),0,CALCULATE([Total Opportunities],FILTER(d_Opportunity,d_Opportunity[Opportunity Status]="CLOSED")))
Could you please help me to resolve this issue?
Thanks,
Niket Talati
Try this one Dude,
Relevant Opportunities Closed =
var X=CALCULATE([Total Opportunities],FILTER(d_Opportunity,d_Opportunity[Opportunity Status]="CLOSED"))
return if (isblank(X),blank(),X)
Thanks for the response and new DAX. Unfortunetly it doesn't work with my scenario since I need to display 0 in place of blank. So when I replace blank with 0 through your DAX, the orignial issue is reproducing again.
Any other tips on this?
Regards,
Niket Talati
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.