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
Anonymous
Not applicable

Calculate Sum of weekly value only if previous week was negative

I am trying to do a running sum af resource availability.  But if a resource is over-used the previous week, I would like to subtract it from the current week.  If it is under-used I do not want it to carry forward.  For instance:

 

Capacity1414141414
Orders1216131210
Available2-2-114
3 REPLIES 3
AllisonKennedy
Super User
Super User

@Anonymous  What does your raw data look like please? 

 

You can do IF([Available]<0, [Available]+[Current], [Current])

 

type of logic, but we need to know what your raw data looks like to be able to detail exactly how. 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Anonymous
Not applicable

My data includes:

Column: Truck Capacity

MEASURE: Open Orders = (SUM('Table1'[Converted Volume])/31) +0
MEASURE: Available Calculation = CALCULATE(SUM(Table2[Truck Capacity])-[Open Orders])
 
I am currently using this measure for the running calculation: 
Available Running Total = IF(
CALCULATE([Available Calculation]<0, DATEDIFF(Table2[Shipment Date], TODAY(), WEEK) = 1),
CALCULATE(
    [Available Calculation],
    FILTER(
        ALLSELECTED('Table2'[Shipment Date]),
        ISONORAFTER('Table2'[Shipment Date], MAX('Table2'[Shipment Date]), DESC)
    )
),[Available Calculation])
But the problem is, if this week is positive and last week was negative, it does not carry the negative value forward.  So I need to look if the previous Available Running Total is negative, then I need to carry it forward.  But I feel like that creates a circular equation.

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.

Top Solution Authors