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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
PeterNowak
Frequent Visitor

IF (?) formula with multiple conditions

Hello,

 

I'm looking for solution how can I create measure which will help me later in filtering.

I'm live connected to transaction database with customer data etc.

I need to create measure(?) with below conditions:

 

If filtered on 'XYZ' then we should only see:

  - number of Activities done one single day and above 20.

  - Customers that have more than 200 activities per month

 

Thanks in advance,

Piotr

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @PeterNowak ,

According to your description, I created some data to show:

v-yangliu-msft_0-1606981440295.png

Here are the steps you can follow:

1. Create calculated column.

Month = MONTH('Table (2)'[Date])

2. Create measure.

Measure =
var _1=CALCULATE(SUM('Table (2)'[amount]),FILTER(ALL('Table (2)'),'Table (2)'[Month]=MAX('Table (2)'[Month])))
return IF(_1>200 && MAX('Table (2)'[amount])>20,_1,BLANK())

3. Result.

v-yangliu-msft_1-1606981440299.png

You can downloaded PBIX file from here.

 

Best Regards,

Liu Yang

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

AllisonKennedy
Super User
Super User

@PeterNowak  Without your specific data model, I can't give specific help, but you can use 

 

&&

 

to add multiple conditions to an IF() or SWITCH() statement in DAX. https://docs.microsoft.com/en-us/dax/dax-operator-reference#logical-operators

 


Hopefully that helps point you in the right direction?


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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