Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello everyone!
I am new to Dax and am guessing the solution is right under my nose, but I've exhausted my limited knowledge and need some guidance.
I have category (location) and subcategory (centers).
A location can have more than one center.
My dimension table Unidades uses the subcategory as primary key, since they aren't duplicate.
There's also a fact table containing the amount of extra hours (R$) per location (category).
When I put the information on a visual it repeats the corresponding overtime for every center according to its location. That's OK. My problem is that I need to add up the grand total of overtime hours, but my measure is adding the overtime for each center and not the location, wich means it adds duplicate values. How do I get the correct sum?
Thank you in advance.
Solved! Go to Solution.
@marina_oliveira , Try like
sumx(summarize(Fact, Dim[Location], Fact[Hora]), [Hora])
or
Sumx(values(Dim[Location]), calculate(Max(Fact[Hora])) )
@marina_oliveira , Try like
sumx(summarize(Fact, Dim[Location], Fact[Hora]), [Hora])
or
Sumx(values(Dim[Location]), calculate(Max(Fact[Hora])) )
Thank you so much!!!
It worked perfectly!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
21 | |
15 | |
14 | |
11 | |
7 |
User | Count |
---|---|
26 | |
24 | |
12 | |
11 | |
10 |