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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors