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
I have the following code that shows the number of issues were the control name is not blank. This works correctly. But now I need to have it the other way around, so it should count if there is not a link, so the Control name is blank. I thought I could do this by changing the 'not(isblank' to 'isblank'. But then I get no results. Is there something I do wrong in this code?
Working, not blank calculation:
Solved! Go to Solution.
@Roym , It should work
Try like
M1 =DISTINCTCOUNT(Table_Issues[Name])
M2= sumx(filter( values(Table_Controls[Control Name]), isblank([M1])),[M1])
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@Roym , It should work
Try like
M1 =DISTINCTCOUNT(Table_Issues[Name])
M2= sumx(filter( values(Table_Controls[Control Name]), isblank([M1])),[M1])
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
I got it working this way, thanks!!
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.