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.
Hello,
Iam trying to use a switch case statement but getting out of memory issue for a visual.
I have a measure with switch statement that is causing the issue and not sure how i can optimize it.
mseaure% =
var x = selectedvalue(comparisonbasis[value])
Any suggestions or help is appreciated.
@PiEye Thank you for re arranged logic, though it doesnt solve my problem, the visual shows data without being out of memory. But it is still alot slower. Taking more than 1min.
Hi Saga, what is in the measures M1,2,3&4?
Pi
m1 = sum(table[col1]) and m2 = sum(table[col2]) and m3 = sum from 3 other columns and
m4 = m3 - (m1 or m2) -- depending on the selected value
Hi Saga
A small improvement could be made by hardcoding a calculated column with the sum of 3 columns and then m3 can be the sum of that.
With regards to M4, let's say selected value is "B". If you consider this part of the measure: [m4] / [m2]
This is now: ([m3]-[m2])/[m2]
Which also equals [m3]/m2 -1
How many rows are we talking?
Pi
@PiEye 100k as of now, but will increase as time goes by. My visual has to display m1,m2, m3,m4 and the measure% in a matrix. So i dont think replacing m4 with m3 - m2 will do any good here, but will add the 3 columns to cal column. Might not be much improvement but will give a try.
Hi @Saga
I'm not sure how to optimise in a technical way, per se, but I was able to re-arrange the logic in to make it simpler and less steps.
I've taken advantage of the Divide function in DAX (https://learn.microsoft.com/en-us/dax/divide-function-dax ) which has an option for expressions that result in infinity, IE they are division by zero.
Try this as a measure
Measure 2 =
var denom= if(SELECTEDVALUE('Case Logic'[X])="E",[M1],[M2])
return if(denom <>0 && [M3]=0,0, divide([M4], denom , 1))
To optimise even further, you could take a look at the expressions m1->4 and perhaps hard code something in the power query model reducing the load in DAX even further
HTH!
Pi
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
76 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |