Forum Discussion
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
- AllisonKennedy
Community Champion
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? - AnonymousNot applicable
Hi PeterNowak ,
According to your description, I created some data to show:
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.
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.