Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
ChoiJunghoon
Helper III
Helper III

How to create measure of the countrow values at variable table ?

Hello. I have a big problem.

 

 Table1

ModuleID| StatusScore| Sequence| Loction
A101A
A102B
A113C
A205D
A203E
A204F
A311A
A3102B
A313C
A404D
A4205E
A406F
A507A
A508B
A509C

 

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) 

 

LocationMeasure
A1
B1
C1
D2
E1
F2

 

but , I want to display below table by using (x1) table. 

LocationMeasure
C1
D1

 

Could you let me know what is wrong ? 

 

1 ACCEPTED 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/

 

 

View solution in original post

3 REPLIES 3
VahidDM
Super User
Super User

Hi @ChoiJunghoon 

 

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. 

 

LocationMeasure
A2
B2
C2
D2
E2
F2

 

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/

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.