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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Umadhandapani
Helper II
Helper II

Filter Condition

Umadhandapani_1-1642746864553.png

Multiple filter condition;

1) If I select 'Germany' it should return Profitsum value, if I select any other apart from 'Germany' it should return '0'

2) When I multiselect, along with Germany and some other country, it shold sum the 'Profitsum' value + 0

 

1 ACCEPTED SOLUTION
ValtteriN
Community Champion
Community Champion

Hi,

Try this logic:

Measure 11 = SWITCH(true(),max('Matrix example'[Brand])="Metal","result 1",
ISFILTERED('Matrix example'[Brand])&&
COUNTROWS(FILTER('Matrix example','Matrix example'[Brand]="Metal"))=1,"result 2","result 3")

ValtteriN_0-1642747999328.png

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!






Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
ValtteriN
Community Champion
Community Champion

Hi,

Try this logic:

Measure 11 = SWITCH(true(),max('Matrix example'[Brand])="Metal","result 1",
ISFILTERED('Matrix example'[Brand])&&
COUNTROWS(FILTER('Matrix example','Matrix example'[Brand]="Metal"))=1,"result 2","result 3")

ValtteriN_0-1642747999328.png

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!






Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




amitchandak
Super User
Super User

@Umadhandapani , Try a new measure like

 

measure =
var _1 = countrows(allseleceted(Table[Country])
var _2 = countrows(filter(allseleceted(Table[Country]), Table[Country] = "Germany"))
return
Switch( tru(),
isblank(_2) , 0 ,
_2 =_1 = sum(Table[Profitsum])+0 ,
sum(Table[Profitsum])
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.