Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi there.
I am trying to do a simple If(or( measure but have three different criteria I want to consider. Unfortunately, I only know how to handle two conditions.
I need to have this be a measure because I have other measures that are dependent on it.
Here is what I currently have:
MoM MARA PROSP Delta Type = if([MoM MARA PROSP]>0,"Increase","Decrease")
But what I also need it to consider is if the [MoM MARA PROSP] value is BLANK or 0. If [MoM MARA PROSP] value is BLANK or 0 I want it to return "New".
Is there anyway I can include this into my current measure?
Thank you,
Andrew
Solved! Go to Solution.
MoM MARA PROSP Delta Type = SWITCH(TRUE(),
[MoM MARA PROSP]=BLANK(),"New",
[MoM MARA PROSP]=0,"New"
[MoM MARA PROSP]>0,"Increase","Decrease")
MoM MARA PROSP Delta Type = SWITCH(TRUE(),
[MoM MARA PROSP]=BLANK(),"New",
[MoM MARA PROSP]=0,"New"
[MoM MARA PROSP]>0,"Increase","Decrease")
@Anonymous
Instead of using OR Condition you can use "||"
SWITCH(TRUE(),
Something="X"||Something="Y"||Something="Z", "YEs","NO")
Try this way
Proud to be a Super User!
User | Count |
---|---|
117 | |
73 | |
58 | |
49 | |
48 |
User | Count |
---|---|
171 | |
122 | |
60 | |
59 | |
56 |