Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello. I have a big problem.
Table1
| ModuleID | | StatusScore | | Sequence | | Loction |
| A1 | 0 | 1 | A |
| A1 | 0 | 2 | B |
| A1 | 1 | 3 | C |
| A2 | 0 | 5 | D |
| A2 | 0 | 3 | E |
| A2 | 0 | 4 | F |
| A3 | 1 | 1 | A |
| A3 | 10 | 2 | B |
| A3 | 1 | 3 | C |
| A4 | 0 | 4 | D |
| A4 | 20 | 5 | E |
| A4 | 0 | 6 | F |
| A5 | 0 | 7 | A |
| A5 | 0 | 8 | B |
| A5 | 0 | 9 | C |
Table2
| ModuleID |
| A1 |
Table3 ** Relationship (Table1[Location)
| Location |
| A |
| B |
| C |
| D |
| E |
| F |
-----------------------------------------------------------
create Measure value
Measure =
VAR x0 =
SUMMARIZE (
FILTER (
Table1,
NOT ( Table1[ModuleID] IN VALUES ( 'Table2'[ModuleID] ) )
),
Table1[ModuleID],
"SUM_", SUM ( Table1[StatusScore] ),
"LastSequence", MAX ( Table1[Sequence] ),
"location",CALCULATE(max(Table1[Loction]),Table1[Sequence] = MAX ( Table1[Sequence] ))
)
VAR x1=
FILTER(x0,[SUM_]=0)
RETURN
COUNTROWS(x1)
and I add the table in the report. (Display)
| Location | Measure |
| A | 1 |
| B | 1 |
| C | 1 |
| D | 2 |
| E | 1 |
| F | 2 |
but , I want to display below table by using (x1) table.
| Location | Measure |
| C | 1 |
| D | 1 |
Could you let me know what is wrong ?
Solved! Go to Solution.
try this:
Measure =
VAR x0 =
SUMMARIZE(
FILTER( Table1, NOT ( Table1[ModuleID] IN VALUES( 'Table2'[ModuleID] ) ) ),
Table1[ModuleID],
"SUM_", SUM( Table1[StatusScore] ),
"LastSequence", MAX( Table1[Sequence] ),
"location",
CALCULATE(
MAX( Table1[Loction] ),
FILTER( Table1, Table1[Sequence] = MAX( Table1[Sequence] ) )
)
)
VAR x1 =
FILTER( x0, [SUM_] = 0 )
RETURN
COUNTROWS( x1 )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
It because of the relation between those table1 and table3,remove that relation and test it again.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
sorry, After remove relation.
| Location | Measure |
| A | 2 |
| B | 2 |
| C | 2 |
| D | 2 |
| E | 2 |
| F | 2 |
try this:
Measure =
VAR x0 =
SUMMARIZE(
FILTER( Table1, NOT ( Table1[ModuleID] IN VALUES( 'Table2'[ModuleID] ) ) ),
Table1[ModuleID],
"SUM_", SUM( Table1[StatusScore] ),
"LastSequence", MAX( Table1[Sequence] ),
"location",
CALCULATE(
MAX( Table1[Loction] ),
FILTER( Table1, Table1[Sequence] = MAX( Table1[Sequence] ) )
)
)
VAR x1 =
FILTER( x0, [SUM_] = 0 )
RETURN
COUNTROWS( x1 )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 8 | |
| 7 | |
| 7 |