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! Request now

Reply
PBIUWO
Helper III
Helper III

Alternative way to display all columns in a Matrix?

Background: 

 

I have a report where there is a Matrix and a filter. 

 

Within the Matrix, there are items on the rows, and Month/Year on the columns. The values are the sales per month.  

*The data source will only show the previous 12 months. 

The filter is used to filter the Item codes that are on the rows. 

For some items, they do not have any sales for each month, so the columns would skip the months that have 0 sales. 

 

Question:

Without using "Show Items WIth No Data", how can I display the months for that have 0 sales? 

(I can't use Show items with no data, because it causes the visual to show the no memory error)

 

*would I just have to place a 0 for all of the sales are blank? 

1 ACCEPTED SOLUTION
v-xulin-mstf
Community Support
Community Support

Hi @PBIUWO

 

You can try measure like:

Measure = 
CALCULATE(
    SUM('Table'[sales])+0,
    'Table'
)

 

Best Regards,

Link 

View solution in original post

2 REPLIES 2
v-xulin-mstf
Community Support
Community Support

Hi @PBIUWO

 

You can try measure like:

Measure = 
CALCULATE(
    SUM('Table'[sales])+0,
    'Table'
)

 

Best Regards,

Link 

negi007
Community Champion
Community Champion

@PBIUWO  i guess you will have to use show items with no data value in this case. else you will have to have one zero record against months where there is no sale volume. 




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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