Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi everyone!
Who can help me with this?
I have a simple mesure tha calculate % in same period from last year.
REAL SALES YY%:=IFERROR([REAL SELLIN]/CALCULATE([REAL SELLIN];DATEADD(d_DATES[DATES];-1;YEAR))-1;0)
This measure is Working very very Slow, can enyone tell me whats wrong?
Solved! Go to Solution.
@rlsantos can you try using the variables and see if it improves the performance
Measure:=
VAR _0 = [REAL SELLIN]
VAR _1 = CALCULATE(_0, SAMEPERIODLASTYEAR(d_DATES[DATES]))
VAR _2 = DIVIDE(_0,_1)
RETURN IFERROR(_2,0)
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
@rlsantos can you try SAMEPERIODLASTYEAR syntax?
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
I've already tried, but it doesn't matter, it's slow
@rlsantos can you try using the variables and see if it improves the performance
Measure:=
VAR _0 = [REAL SELLIN]
VAR _1 = CALCULATE(_0, SAMEPERIODLASTYEAR(d_DATES[DATES]))
VAR _2 = DIVIDE(_0,_1)
RETURN IFERROR(_2,0)
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
Thanks Bro!!
It worked
@rlsantos glad to be of help. Can you please accept the answer.
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
Check out the November 2023 Power BI update to learn about new features.