Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
Solved! Go to Solution.
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
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
User | Count |
---|---|
82 | |
79 | |
65 | |
48 | |
45 |
User | Count |
---|---|
103 | |
44 | |
39 | |
39 | |
39 |