March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I've got this exact senario what I would typicall use a "If(OR..." statement, but I can't because I can only do 2 arguments...I think I need to use SWITCH but I'm not sure. Can someone give me the DAX formula for the following...
If trandata[account] number is between 6001-6098, or 7030, 7926 or 9071 then retreive the values from trandata[amount]
Please and thank you!!!
Solved! Go to Solution.
Hi, lets try with this calculated column:
M =
IF (
Trandata[Account] >= 6001
&& Trandata[Account] <= 6098
|| Trandata[Account] = 7030
|| Trandata[Account] = 7926
|| Trandata[Account] = 9071;
Trandata[Amount]
)
Regards
Victor
Hi, lets try with this calculated column:
M =
IF (
Trandata[Account] >= 6001
&& Trandata[Account] <= 6098
|| Trandata[Account] = 7030
|| Trandata[Account] = 7926
|| Trandata[Account] = 9071;
Trandata[Amount]
)
Regards
Victor
A shorter version will be:
M = IF ( Trandata[Account] >= 6001 && Trandata[Account] <= 6098 || Trandata[Account] IN { 7030; 7926; 9071 }; Trandata[Amount] )
Regards
Victor
Thanks Vvelarde for the super quick reply!!
I tried the both options...but getting an error
The syntax for ';' is incorrect. (DAX(IF ( Trandata[Account] >= 6001 && Trandata[Account] <= 6098 || Trandata[Account] IN { 7030; 7926; 9071 }; Trandata[amount]))).
Do I have something wrong?
I pasted your exact DAX in.
I changed the
;
to a
,
and I think that might do it...trying now...
I was able to get this to work...
M = IF ( Trandata[account] >= 6001 && Trandata[Account] <= 6098 || Trandata[Account] = 7030 || Trandata[Account] = 7926 || Trandata[Account] = 9071, Trandata[Amount],blank() )
I like the shorter option you proposed, but could not get it to work.
lol. Darn regional settings lol.
Thank you though. Formula is working awesome :-)!!!!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |