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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
schoden
Post Partisan
Post Partisan

IF with conditions

Hi Experts, Help me out with this formula . I have two tables;
table[company],table[Sales],         table2[branch]…..
If company selected is A , return sales amount otherwise return sales amount for all other company BUT apply filter branch<> z
 
new column= IF(selectedvalue[company])=''A', SUM(table[Sale]) , CALCUALTE(SUM(table[Sale], NOT(CONTAINSTRINGS(table2[branch]),"z" )))
1 ACCEPTED SOLUTION
v-zhenbw-msft
Community Support
Community Support

Hi @schoden ,

 

We can create a new slicer based on a new distinct company table to meet your requirement.

 

1. Create a new table based on company.

 

distinct company = DISTINCT('Table'[company])

 

IF 1.jpg

 

2. Then we can create a slicer based on the company.

 

IF 2.jpg

 

3. At last we create a measure, and the result like this,

 

Measure = IF(SELECTEDVALUE('distinct company'[company])="A", SUM('Table'[Sales]) , CALCULATE(SUM('Table'[Sales]), NOT(CONTAINSSTRING('Table (2)'[branch],"z"))))

 

IF 3.jpg

 

IF 4.jpg

 

There is no relationship between Table and distinct table.

 

If it doesn’t meet you requirement, could you please show the exact expected result based on the table that we have shared?

BTW, pbix as attached.       

 

Best regards,

 

Community Support Team _ zhenbw

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

4 REPLIES 4
v-zhenbw-msft
Community Support
Community Support

Hi @schoden ,

 

We can create a new slicer based on a new distinct company table to meet your requirement.

 

1. Create a new table based on company.

 

distinct company = DISTINCT('Table'[company])

 

IF 1.jpg

 

2. Then we can create a slicer based on the company.

 

IF 2.jpg

 

3. At last we create a measure, and the result like this,

 

Measure = IF(SELECTEDVALUE('distinct company'[company])="A", SUM('Table'[Sales]) , CALCULATE(SUM('Table'[Sales]), NOT(CONTAINSSTRING('Table (2)'[branch],"z"))))

 

IF 3.jpg

 

IF 4.jpg

 

There is no relationship between Table and distinct table.

 

If it doesn’t meet you requirement, could you please show the exact expected result based on the table that we have shared?

BTW, pbix as attached.       

 

Best regards,

 

Community Support Team _ zhenbw

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

@v-zhenbw-msft 

Thank you.

 

This is exactly my requirement.  

amitchandak
Super User
Super User

@schoden , You have to create a new measure

new Measure= IF(selectedvalue[company]="A", SUM(table[Sale]) , CALCUALTE(SUM(table[Sale]), NOT(CONTAINSTRINGS(table2[branch],"z" ))))

 

Similar example

https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/50...

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

@amitchandak  Hi thanks for the reply.

 

Yes it is measure I applied,  sorry I wrote as column.  

It is not filtering ...do you have better DAX for it.   ? 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.