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
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...

@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
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.