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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Return value from a filtered dimension which is not in that dimension type.

Hi all, 

 

I have a star schema model, with some simple dimensions; DimDate, DimSite, and DimProduct.

 

I need to subtract and then add some values that are not found under the filter context when selecting SiteType. So for example I need to return the SUM of FactSales with a filter in the report slicers with DimDate (e.g) DimDate[IsPreviousMonth] = 1 and DimSite (e.g) DimSite[SiteType] = "Depot", but then take this and add a SUM from a separate hard-coded measure which is under a different SiteType, for example DimSite[SiteType] = "Office". 

 

I've gotten so far with ALL, however when I filter the report via DimSite[SiteType] it will not return a number and gets filtered out.

 

I am terrible at trying to explain scenarios like this so any questions to make things clearer please let me know.

 

Thanks,

Gordon

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous,

 

You can try to use below measure formula if it suitable for your replacement:

Measure =
VAR Selected =
    CALCULATE (
        SUM ( Fact[Sales] ),
        FILTER ( ALLSELECTED ( DimDate ), DimDate[IsPreviousMonth] = 1 ),
        DimSite[SiteType] = "Depot"
    )
VAR Other =
    CALCULATE (
        SUM ( Fact[Sales] ),
        FILTER ( ALLSELECTED ( DimDate ), DimDate[IsPreviousMonth] = 1 ),
        FILTER ( ALL ( DimSite ), DimSite[SiteType] = "Office" )
    )
RETURN
    selected + Other

If above not help, please share some sample data for testing and coding formula.

 

Regards,

Xiaoxin Sheng

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous,

 

You can try to use below measure formula if it suitable for your replacement:

Measure =
VAR Selected =
    CALCULATE (
        SUM ( Fact[Sales] ),
        FILTER ( ALLSELECTED ( DimDate ), DimDate[IsPreviousMonth] = 1 ),
        DimSite[SiteType] = "Depot"
    )
VAR Other =
    CALCULATE (
        SUM ( Fact[Sales] ),
        FILTER ( ALLSELECTED ( DimDate ), DimDate[IsPreviousMonth] = 1 ),
        FILTER ( ALL ( DimSite ), DimSite[SiteType] = "Office" )
    )
RETURN
    selected + Other

If above not help, please share some sample data for testing and coding formula.

 

Regards,

Xiaoxin Sheng

 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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