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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Libin7963
Helper II
Helper II

Display blank row in Matrix table

I have two tables as below 

Table 1

 

Libin7963_2-1726480112898.png

 

 

Table 2

 

Libin7963_1-1726480095721.png

 

As you can see below the matrix table is not showing C, Is it possible to display C with value 0.

 

Libin7963_0-1726480072775.png

 

 

 

 

 
1 ACCEPTED SOLUTION

@Libin7963 , Also check if this is enabled or not

 

bhanu_gautam_0-1726485897931.png

 




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

5 REPLIES 5
suparnababu8
Super User
Super User

Hi @Libin7963 

Create a DAX measure  as mentioned below

FinalID = 
SUMX(
    'Table A',
    VAR RelatedID = MAXX(
        FILTER('Table B', 'Table B'[Name] = 'Table A'[Name]),
        'Table B'[ID]
    )
    RETURN IF(ISBLANK(RelatedID), 0, RelatedID)
)

Then Drag Name  column from Table A into Rows  field

suparnababu8_0-1726491918165.png

then drag FinalID  measure into Values  field

 

suparnababu8_1-1726491969269.png

 

Then you'll get the output as you required. 

suparnababu8_2-1726491997616.png

 

Hope this helps you.

 

Thanks!

 

bhanu_gautam
Super User
Super User

@Libin7963 , Try this

Click on the matrix visual to select it.
Go to the "Format" pane.
Expand the "Values" section.
Turn on the "Show on rows" option if you want to display rows with no data.




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Thanks for youre reply, are you referring to the option below, if so it is not helping. 

Libin7963_0-1726483181944.png

 

@Libin7963 , Also check if this is enabled or not

 

bhanu_gautam_0-1726485897931.png

 




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Thanks, that almost worked, is it possible to show 0 for blanks 

Libin7963_0-1726492174231.png

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors