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. 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/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
14 | |
11 | |
8 | |
8 | |
8 |
User | Count |
---|---|
22 | |
13 | |
11 | |
10 | |
10 |