Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi.
I'm try to create a new calculated table like thisAnd fill the blank spaces with "0" to represent in a line chart without blank spaces.
The numbers in the matrix is a measure of COUNTROWS and the values of the first column are a column of the Excel with diferent categories.
Can you help me please, and sorry for the english errors i'm starting with this.
Solved! Go to Solution.
Hi @Anonymous ,
I created a sample pbix file (see attachment), please check whether that is what you want.
1. Create a date dimension table
2. Create relationship between BD and date dimension table base on date field
3. Put Month field from date dimension table into matrix to replace month field of BD table
Best Regards
Hi @Anonymous ,
I created a sample pbix file (see attachment), please check whether that is what you want.
1. Create a date dimension table
2. Create relationship between BD and date dimension table base on date field
3. Put Month field from date dimension table into matrix to replace month field of BD table
Best Regards
@Anonymous In your measure add in a way to convert the blank() to 0 like this:
Measure = COALESCE(COUNTROWS(Table),0)
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
Im try to use the solution, but the blank spaces don't fill with values
@Anonymous Can you tell me what table the left column is getting it's data from? Is it the same table, 'BD'?
Respectfully,
Zoe Douglas (DataZoe)
Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/
@Anonymous
Just add a 0 to your measure.. As in
no blanks = [your measure] + 0
or
no blanks = SUM(table[column]) + 0
Proud to be a Super User!
Paul on Linkedin.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.