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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
tristanweeks47
Frequent Visitor

IF and AND statements

Hello, 
I am trying to show UPRNS that have account type Closed AND Connection. 
Please see screenshot below...
The UPRNS is a list of duplicates. I want to show only the UPRNS of the account that have closed and then there is a connection after. How do i go about this? Thank you 

tristanweeks47_0-1699616927122.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @tristanweeks47 ,

 

Please try code as below to create a measure to filter your visual.

Measure = 
VAR _TYPE_LIST = CALCULATETABLE(VALUES('Table'[Account Type]),ALLEXCEPT('Table','Table'[UPRN]))
RETURN
IF("Closed" in _TYPE_LIST && "Connection" in _TYPE_LIST ,1,0)

Sample:

vrzhoumsft_0-1699853332762.png

Add this measure into visual level filter and set it to show items when value = 1.

vrzhoumsft_1-1699853367601.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @tristanweeks47 ,

 

Please try code as below to create a measure to filter your visual.

Measure = 
VAR _TYPE_LIST = CALCULATETABLE(VALUES('Table'[Account Type]),ALLEXCEPT('Table','Table'[UPRN]))
RETURN
IF("Closed" in _TYPE_LIST && "Connection" in _TYPE_LIST ,1,0)

Sample:

vrzhoumsft_0-1699853332762.png

Add this measure into visual level filter and set it to show items when value = 1.

vrzhoumsft_1-1699853367601.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Dangar332
Super User
Super User

HI, @tristanweeks47 

try below code 

adjust column name and table name
logic work below

Measure = 
var a1 = CALCULATE(max('Table'[Column1]),FILTER('Table', 'Table'[Column2]=2))
var b1 = CALCULATE(max('Table'[Column1]),FILTER('Table', 'Table'[Column2]=1))
return 
CALCULATE(MAX('Table'[Column1]),
 'Table'[Column1]=a1 && 'Table'[Column1]=b1,ALLEXCEPT('Table','Table'[Column2]))

 

sample data i have taken

Dangar332_1-1699619464843.png

 

result of measure

 

Dangar332_0-1699619442336.png

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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