Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I am writing a DAX like this
VAR sv = SELECTEDVALUE(‘select type’[type])
VAR test = SWITCH(sv, “Off”, SUM(prod[abs_off]), “On”, SUM(prod[abs_onl]))
VAR previos_val = CALCULATE (
test,
SAMEPERIODLASTYEAR(‘Date’[Date]) )
RETURN DIVIDE (test, previos_val) * 100
in the result it always returns 100, although if I insert a value from switch results into calculate(), all works well. How to fix this issue?
Solved! Go to Solution.
@IliaS Variables (VAR) are not dynamic or well, variable. Confusing yes. Variables are static once calculated so you can't recalculate them using CALCULATE. If you separate into 2 measures then yes. Also, I recommend avoiding TI functions. You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
@IliaS Variables (VAR) are not dynamic or well, variable. Confusing yes. Variables are static once calculated so you can't recalculate them using CALCULATE. If you separate into 2 measures then yes. Also, I recommend avoiding TI functions. You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
8 | |
6 | |
4 | |
3 |