Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
example of tables
Table a | |||||
Date | A | Region | Site | table b key | table c |
1/01/2014 | 1 | a | 2 | 1 | 1 |
2/01/2014 | 2 | b | 3 | 2 | 2 |
3/01/2014 | 1 | a | 4 | 3 | 3 |
Table b | |
key | b |
1 | 2 |
2 | 2 |
3 | 1 |
table C | |
key | c |
1 | 260 |
2 | 400 |
3 | 260 |
the result im exspecting is 3 sum (table a ,A)
Hi, @SLeepyhead
Here are my thoughts, maybe you can try the following DAX:
CALCULATE(
SUM(table a[x]),
FILTER(
ALL(table a),
RELATED(Table b[y]) <> "1"
),
FILTER(
ALL(table c),
NOT RELATED(table c[c]) IN {"260", "261", "262", "263"}
)
)
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data)
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |