March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Source ( Download Here )
Userstory:
Imagine you have big star shema model and important values/facts in dimensional Tables.
And you don't want to mess up your fact table with multiple low cardinality columns.
Question: How to proper handle these dimTable facts/values?
Simplified Example:
Question: How to get DESIRED YearVolume (because by default it gives 2200 (Totals) in each cell)?
Solved! Go to Solution.
Solution ( Download Here )
DESIRED YearVolume =
CALCULATE(
SUM(dimSalesYearly[YearVolume]),
KEEPFILTERS(factSales)
)
It could be used as simple pattern for similar cases
Advanced Example Solution:
If you have a bit more complicated model:
Sometimes you need fixed Totals as well:
DESIRED YearVolume (Fixed Totals) =
VAR isInSc_Prod = ISINSCOPE(dimProduct[idProduct])
VAR isInSc_Year = ISINSCOPE('Calendar'[Year])
VAR Result =
SWITCH(
TRUE(),
NOT isInSc_Prod && NOT isInSc_Year,
CALCULATE([DESIRED YearVolume],REMOVEFILTERS(dimProduct[idProduct]),REMOVEFILTERS('Calendar'[Year])),
NOT isInSc_Prod, CALCULATE([DESIRED YearVolume], REMOVEFILTERS(dimProduct[idProduct])),
NOT isInSc_Year, CALCULATE([DESIRED YearVolume], REMOVEFILTERS('Calendar'[Year])),
[DESIRED YearVolume]
)
RETURN Result
P.S. I'd appreciate if you support "PowerQuery: Special symbol for previous step name" request feature by your vote here or/and LinkedIn like/repost here.
Hi @Anonymous
how about
DESIRED YearVolume 2 =
SUMX (
SUMMARIZE (
factSales, dimSalesYearly[idYearProduct],
"@Volume", SUM ( dimSalesYearly[YearVolume] )
),
[@Volume]
)
?
@tamerj1 @Anonymous I came up with:
Measure =
VAR __idYearProduct = DISTINCT('factSales'[*idYearProduct])
VAR __Result = SUMX(FILTER(ALL('dimSalesYearly'), [idYearProduct] IN __idYearProduct), [YearVolume])
RETURN
__Result
Or, you know, make the relationship bi-directional would work as well.
@NotGregDeckler , @tamerj1
Unbelievable!
Absoulutely different thinking style 🙂👍
I updated Source file with your solutions.
Thank you very much!
P.S. Not clear from this discussion branch, but I asked @tamerj1 and @NotGregDeckler in this post, if it's possible to create this measure without explicite use of CALCULATE function according to DAX is easy, CALCULATE makes DAX hard phylosophy.
Solution ( Download Here )
DESIRED YearVolume =
CALCULATE(
SUM(dimSalesYearly[YearVolume]),
KEEPFILTERS(factSales)
)
It could be used as simple pattern for similar cases
Advanced Example Solution:
If you have a bit more complicated model:
Sometimes you need fixed Totals as well:
DESIRED YearVolume (Fixed Totals) =
VAR isInSc_Prod = ISINSCOPE(dimProduct[idProduct])
VAR isInSc_Year = ISINSCOPE('Calendar'[Year])
VAR Result =
SWITCH(
TRUE(),
NOT isInSc_Prod && NOT isInSc_Year,
CALCULATE([DESIRED YearVolume],REMOVEFILTERS(dimProduct[idProduct]),REMOVEFILTERS('Calendar'[Year])),
NOT isInSc_Prod, CALCULATE([DESIRED YearVolume], REMOVEFILTERS(dimProduct[idProduct])),
NOT isInSc_Year, CALCULATE([DESIRED YearVolume], REMOVEFILTERS('Calendar'[Year])),
[DESIRED YearVolume]
)
RETURN Result
P.S. I'd appreciate if you support "PowerQuery: Special symbol for previous step name" request feature by your vote here or/and LinkedIn like/repost here.
Hi @Anonymous ,
Thank you for your sharing. Please kindly accept your workaround as the solution. Then more people will see your post.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |