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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Missing value in Matrix visual although the the total is calculated correctly

this is a screen shot from the table

nohasalem_0-1622594663374.png

as you can see there are values missing in the red area which if present will show a meaningful reason for the total at the bottom

I am thinking it has to do with the measure I am using which I have copied from excel and not sure if what changes to apply to make those missing values appear

Measure = CALCULATE(
                              [Net FCF - Unrisked],
                      FILTER(
                                       ALLSELECTED(FactKeyData[Year]),
                                      ISONORAFTER(FactKeyData[Year], MAX(FactKeyData[Year]), DESC)
                         ))
 
Any thoughts to fix this?
 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Please use a separate year or Date table and try like

 

Measure = CALCULATE(
[Net FCF - Unrisked],
FILTER(
ALLSELECTED(Year[Year]),
ISONORAFTER(Year[Year], MAX(Year[Year]), DESC)
))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Please use a separate year or Date table and try like

 

Measure = CALCULATE(
[Net FCF - Unrisked],
FILTER(
ALLSELECTED(Year[Year]),
ISONORAFTER(Year[Year], MAX(Year[Year]), DESC)
))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

yup that worked 🙂

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors