Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
BigTommy
Helper I
Helper I

subtraction from zero....

Hi Guys, 

 

Hope you kepping well. I have an issue and cannot fix this. I beleive this is soemthing really simple but....

 

DateItem numberAvg Unit cost 2019Current unit costVariance
14/02/2020122.3702.37
12/02/2020122.372.300.07
10/03/202011.31.10.2

 

The Variance is calculated Avg Unit Cost 2019 - Current Unit Cost

So:

2.37 - 2.3 = 0.07

1.3 - 1.1 = 0.2

and

2.37 - 0 = 2.37 which is ok however, I am looking somethign different. 

 

So I want to compare the current average purchase price with the previous. But when I subtracting from zero it will always give me previos value not 0. 

 

I want

If the Current Unit Cost = 0
return Zero in Variance Unit cost

OTHERWISE

Current Product Unit Cost - Avg Product Unit cost

 

 

SEND HELP!!

 

Thnak you

 

BigTommy

 

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@BigTommy 

please try

if ( currentunitcost=0, 0, currentunitcost-avgunitcost )





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
BigTommy
Helper I
Helper I

Hey, thank you. Is working!

 

 

amitchandak
Super User
Super User

@BigTommy , Try like

new column =
if ( Table[currentunitcost]=0, 0, Table[currentunitcost]-Table[avgunitcost] )

new measure =
if ( Avg(Table[currentunitcost])=0, 0, Avg([currentunitcost])-Avg([avgunitcost]) )
ryan_mayu
Super User
Super User

@BigTommy 

please try

if ( currentunitcost=0, 0, currentunitcost-avgunitcost )





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.