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,
I am trying to replace blank values for the ACTUAL column (which I created using new measure) in my matrix with the value 100% but I am not able to. I tried the following code, but it doesn't make any changes to matrix:
Good day i have a similar problem , where there is blanks i want it to show as 100% uptime, please assist
Hi! Do you have answer for this? I have the same issue.
What about if you do it as a Calculated Column as:
= IF ( ISBLANK([Actual]), 1, [Actual])
I am assuming [Actual] is a value and not text here.
@Anonymous
Agree, we need to see your table not just the matrix visual, dax is based on the data table not report visuals.
Paul Zheng _ Community Support Team
Hi @Anonymous ,
Could you please share the pbix file so that I can look into it..?
Sorry I cannot share the pbix file due to security issues. Is there any other option?
Is your column with data blank or 'null' ?
It is blank. There is no data to show there so i want to show 100% in those rows.
Hello @Anonymous ,
Create a column and try once,
Column = IF ( ISBLANK([Actual]), "100%", [Actual])
I have already tried it. Its showing the same result as actual column. No change.
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.