Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
23 | |
21 | |
20 | |
13 | |
12 |
User | Count |
---|---|
41 | |
32 | |
23 | |
22 | |
22 |