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
Anonymous
Not applicable

return names with all negative values

Hello All,

I have a query I hope you can help me with. I have a dataset table in which I have 2 columns, name and flagid.

flagid can be either 0 or 1 as shown below. Any user can have both 0 and 1 as flagid. Now I want names of all users whose flagid is only 0 not 1. How can I achieve this.pic.png 

In the above figure i want only name chris since he only has 0 as flagid.

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

You can use the expression below.

Measure = 
VAR x1 = CALCULATETABLE(
    VALUES( YourTable[name] ),
    YourTable[flagid] = 1
)
VAR x0 = CALCULATETABLE(
    VALUES( YourTable[name] ),
    YourTable[flagid] = 0
)
RETURN 
COUNTROWS( EXCEPT( x0, x1 ) )

Hope this helps 

Mariusz

 

 

View solution in original post

1 REPLY 1
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

You can use the expression below.

Measure = 
VAR x1 = CALCULATETABLE(
    VALUES( YourTable[name] ),
    YourTable[flagid] = 1
)
VAR x0 = CALCULATETABLE(
    VALUES( YourTable[name] ),
    YourTable[flagid] = 0
)
RETURN 
COUNTROWS( EXCEPT( x0, x1 ) )

Hope this helps 

Mariusz

 

 

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.