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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
PBE
Helper II
Helper II

Measure to Deal with Negatives in Calculation

Hi, Thanks in advance.

I couldn't find a way of uploading a file to the forum. The link below is a google drive link to a copy of the file.

https://drive.google.com/file/d/150YjoWvugCp6-dEOnypDtCqF1J9Pkazy/view?usp=sharing

In a previous post:-

https://community.fabric.microsoft.com/t5/Desktop/Use-Previous-Value-In-Column-In-Calculation/m-p/32...

I was kindly supplied with a measure to do the first calculation I need.

 

Measure =
var _a = ALLSELECTED('Table'[Work Type])
var _b = MAX('Table'[Row])
return SUMX(FILTER(ALL('Table'),[Work Type] in _a&&[Row]<=_b),'Table'[Amount]-'Table'[Available])
 
Giving the results in the example below
row 1 Measure is Amount - Available  (12 - 2160 = -2148.00)
row 2 Measure is Row 1 Measure (-2148) + Row 2 Amount (85) - Row 2 Available (2160) = -4223
row 3 Measure is Row 2 Measure (-4223) + Row 3 Amount (1660) - Row 3 Available (2106) = -4723
 
PBE_1-1685632985861.png

I need an additional column which deals diffrently with negatives in the measure column. Therefore the 'New Measure' column instead of -negative numbers uses a 0 and only uses positive numbers in the calculation. See illustration below.

 

PBE_2-1685633594407.png

I hope this makes sense.

Thanks

 

Pete

 
1 ACCEPTED SOLUTION

That's unfortunately exactly the point. The result cannot be modified by filters.

View solution in original post

4 REPLIES 4
lbendlin
Super User
Super User

That selective addition is not something you can do in DAX.  You can use List.Accumulate in Power Query for this but that will result in a column, not a measure.

Thanks @lbendlin . Not sure what list.Accumaulate is, will have a look. I'm not sure it matters if the result is a column so long as it does the calcultion and can be filtered by a slicer.

That's unfortunately exactly the point. The result cannot be modified by filters.

Thanks for letting me know. I'll have to think of another way of doing it.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.