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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
RyanHare92
Helper I
Helper I

Measure to check if ID has any Type selected from Slicer

I have a table that looks like this:

ID

Type

1

A

1

B

1

C

2

B

2

B

2

C

3

C

3

A

4

D

 

I would like to create a measure that tells me, based on a slicer selection that has option from another table with the unique "Type" values, if each ID contains more than one of the selected Type.

The outcome I would like to have, assuming that "A" is selected in the slicer, it the following:

ID

Type

Measure_Outcome

1

A

Yes

1

B

Yes

1

C

Yes

2

B

No

2

B

No

2

C

No

3

C

Yes

3

A

Yes

4

D

No


I have put the following together, but it doesnt seem to work. I believe I have a basic misunderstanding of how Measures work:

 

Measure =

VAR _CHECK =
CALCULATE(
    COUNTROWS(Table),
    Table[Type] = MAX(Sources[Type]),
    Table[ID] = MAX(Table[ID])
)

RETURN
IF(
    _CHECK > 0,
    "Yes",
    "No"
)

 


The Source table is the table that includes a summarized table of all the Types.

Would anyone be able to help me create a functioning measure?

Many thanks in advance.

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @RyanHare92 

Please try

ResultMeasure =
IF (
    ISEMPTY (
        INTERSECT (
            CALCULATETABLE (
                VALUES ( 'Table'[Type] ),
                ALLSELECTED ( 'Table' ),
                VALUES ( 'Table'[ID] )
            ),
            VALUES ( Sources[Type] )
        )
    ),
    "No",
    "Yes"
)

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

Hi @RyanHare92 

Please try

ResultMeasure =
IF (
    ISEMPTY (
        INTERSECT (
            CALCULATETABLE (
                VALUES ( 'Table'[Type] ),
                ALLSELECTED ( 'Table' ),
                VALUES ( 'Table'[ID] )
            ),
            VALUES ( Sources[Type] )
        )
    ),
    "No",
    "Yes"
)

Hi Tamerj1,

Word like a charm! Thank you so much. Now I just need to understand how it works 😅

@RyanHare92 
Maybe the following calrifies it a little bit. This is how it behaves in the first three rows (i.e. for ID = 1):

      IF ( ISEMPTY ( INTERSECT ( { "A", "B", "C" }, { "A" } ) ), "No", "Yes" )
>>>>> IF ( ISEMPTY ( { "A" } ), "No", "Yes" )
>>>>> IF ( FALSE, "No", "Yes" )
>>>>> "Yes"

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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