The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I got a question. Got two Tables, one DIM with the ID and one Fact with a ID and Value. Now I wan't to summarizes these values to the DIM Table.
Calculate(
Sum(Value),
DIM[ID]=Fact[ID])
Thought I could handle it like that but that doesn't work. What must I do to solve my issue?
PS: I am using that in PowerPivot not PowerBI, but I guess it will work equally.
Thanks a lot
Solved! Go to Solution.
Hi @Anonymous
If you have a relationship between the tables, this should be enough:
Calculate(Sum(Fact[Value]))
otherwise:
Calculate(Sum(Value), FILTER( ALL(Fact [ID]), Fact[ID]=DIM[ID]))
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Awesome! Thanks a lot, works like a charm. 😀
Hi @Anonymous
If you have a relationship between the tables, this should be enough:
Calculate(Sum(Fact[Value]))
otherwise:
Calculate(Sum(Value), FILTER( ALL(Fact [ID]), Fact[ID]=DIM[ID]))
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
11 | |
9 | |
8 |