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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.