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
Anonymous
Not applicable

Showing ALL() values - but only when there are values in another columns

Hey there

 

Link for the file

 

Is there any way to show the rows in the following table but only when there is a value for the month in the filter context?

Untitled.png

 

The measure that calculates the Amount deducted is the following:

 

 

Amount deducted = 
VAR _ALL = CALCULATE( [Amount] , ALL( d_calendar ) ) -- , CALCULATETABLE( Example ) )
VAR _Result = 
    CALCULATE( 
        [Amount],
        FILTER(
            ALL( d_calendar ),
            d_calendar[Date] <= MAX( d_calendar[Date] )
        )
    )
RETURN
    _ALL - _Result

 

 

I've even tried to do that by using CALCULATETABLE() inside the CALCULATE statement, but it has not properly worked.

 

Do any of you know how to blank out all the red-outlined lines of the image? Something like that is expected:

Pedro503_0-1690096841524.png

 

 

Thanks in advance.

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

pls try this

Amount deducted = 
VAR _ALL = CALCULATE( [Amount] , ALL( d_calendar ) ) -- , CALCULATETABLE( Example ) )
VAR _Result = 
    CALCULATE( 
        [Amount],
        FILTER(
            ALL( d_calendar ),
            d_calendar[Date] <= MAX( d_calendar[Date] )
        )
    )
RETURN
    IF([Amount],_ALL - _Result)

View solution in original post

2 REPLIES 2
Ahmedx
Super User
Super User

pls try this

Amount deducted = 
VAR _ALL = CALCULATE( [Amount] , ALL( d_calendar ) ) -- , CALCULATETABLE( Example ) )
VAR _Result = 
    CALCULATE( 
        [Amount],
        FILTER(
            ALL( d_calendar ),
            d_calendar[Date] <= MAX( d_calendar[Date] )
        )
    )
RETURN
    IF([Amount],_ALL - _Result)
Anonymous
Not applicable

Can't believe the solution is that simple, my friend. Thank you very much.

I've been trying to fix that all the week, but always got the CallBackDataId, which screw the performance in my real-life report. However, with your piece of code you managed to help me out. Cant say other thing but thanks.

 

Have a nice day.

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