Hi all,
I am quite new for PowerBI. I would like to ask for help.
I made the PowerBI dashboard which reads the report slowly.
I assume that the below DAX affects the whole dashboard performance.
Is there any way to enhance this using VAR function?
Solved! Go to Solution.
Hi @sean_hong ,
You can try the following measure.
DAX_name =
var _a=SELECTEDVALUE(wbr[measure_type]) IN {"name1", "name2", "name3"}
var _b=IFERROR( SUM(table[measure1]), 0)
var _c=SELECTEDVALUE(wbr[measure_type]) IN {"name4", "name5", "name6"}
var _d=divide(sum(table[measure1]), sum(table[measure2]), 0)
var _e=SELECTEDVALUE(wbr[measure_type]) IN {"name7"}
var _f=IFERROR( CALCULATE(Table2[measure3]*100), 0)
var _g=SELECTEDVALUE(wbr[measure_type]) IN {"name8", "name9"}
var _h=divide( sum(table[measure1]),sum(table[measure2]), 0)*1000000
.....
var _result=
SWITCH(
TRUE()
, _a, _b
, _c, _d
, _e, _f
,_g , _h)
return _result
Please refer to the following document for more information.
Use variables to improve your DAX formulas - DAX | Microsoft Learn
Using Variables within DAX - (powerbi.tips)
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Fantastic!. It perfectly works. Thak you so much !!
Hi @sean_hong ,
You can try the following measure.
DAX_name =
var _a=SELECTEDVALUE(wbr[measure_type]) IN {"name1", "name2", "name3"}
var _b=IFERROR( SUM(table[measure1]), 0)
var _c=SELECTEDVALUE(wbr[measure_type]) IN {"name4", "name5", "name6"}
var _d=divide(sum(table[measure1]), sum(table[measure2]), 0)
var _e=SELECTEDVALUE(wbr[measure_type]) IN {"name7"}
var _f=IFERROR( CALCULATE(Table2[measure3]*100), 0)
var _g=SELECTEDVALUE(wbr[measure_type]) IN {"name8", "name9"}
var _h=divide( sum(table[measure1]),sum(table[measure2]), 0)*1000000
.....
var _result=
SWITCH(
TRUE()
, _a, _b
, _c, _d
, _e, _f
,_g , _h)
return _result
Please refer to the following document for more information.
Use variables to improve your DAX formulas - DAX | Microsoft Learn
Using Variables within DAX - (powerbi.tips)
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
224 | |
58 | |
49 | |
48 | |
46 |
User | Count |
---|---|
277 | |
211 | |
113 | |
83 | |
71 |