Forum Discussion
Recursive DAX Calculated Column
My company needs a scheduling report for the hours worked on machines. We can only use DirectQuery, not import due to security reasons.
What I have so far is a table that has the HoursRemaining (the hours that need to be done that day), the HoursUnderCapacity (the hours that are leftover, are free), and the HoursOverCapacity (the hours that are over the planned hours for that machine on that day). The x-axis is the date.
We would like the HoursOverCapacity to be added on to the next day's over or under capacity. For example, if the previous day had hours over it's capacity, put it onto the remaining hours of the current day. If the current day had hours under capacity, the previous day's hours over capacity would subtract from the free hours that were available that day. And if there was hours over capacity of that day, then it would add the previous day's hours over capacity to the current day's.
I've created this 'TestingColumn,' which is a calculated column with the following DAX:
TestingColumn =
var prevHOC = 'Testing Totals'[prevHOC]
var currentHOC = 'Testing Totals'[HoursOverCapacity]
var currentHUC = 'Testing Totals'[HoursUnderCapacity]
RETURN IF (
prevHOC > 0,
IF (
currentHOC > 0,
prevHOC + currentHOC,
IF (
currentHUC > 0,
ABS(prevHOC - currentHUC),
0
)
),
IF (
currentHOC > 0,
currentHOC,
IF (
currentHUC > 0,
currentHUC,
0
)
)
)
It correctly adds/subtracts the previous day's HoursOverCapacity to the current day's. However, when it goes to the day after to continue adding/subtracting HoursOverCapacity, it doesn't retrieve the updated value from the previous day that was just calculated. We need it to update the values as it goes, subtracting/adding and continuing the logic.
Here's an example of the data:
| Date | HoursUnderCapacity | HoursOverCapacity |
| 3/8/20 | 0 | 22.23 |
| 3/9/20 | 0 | 16.58 |
| 3/10/20 | 11.64 | 0 |
| 3/11/20 | 0 | 18.08 |
We want it to look like:
| Date | HoursUnderCapacity | HoursOverCapacity |
| 3/8/20 | 0 | 22.23 |
| 3/9/20 | 0 | 38.81 |
| 3/10/20 | 0 | 27.17 |
| 3/11/20 | 0 | 45.25 |
So adding 22.23 + 16.58 = 38.81,
Then subtracting 38.81 (over capacity hours) - 11.64 (free hours) = 27.17 (still over capacity),
And finally adding 27.17 + 18.08 = 45.25.
How can I do this within a DAX calculated column? Or a different, more efficient way?
Thanks!
14 Replies
- AnonymousNot applicable
The most efficient solution would be to use a measure instead of a calculated column.
I'd solve this by creating two measures:
Total Over Capacity = SUM(YourData[HoursOverCapacity]) - SUM(YourData[HoursUnderCapacity])Over Capacity To Date = var filterDate = LASTDATE(YourData[Date]) var output = CALCULATE( [Total Over Capacity], ALL(YourData), YourData[Date] <= filterDate ) RETURN output- LyssillicHelper I
Anonymous
Okay, so that's close to what I'm looking for, but when the total hours over capacity is negative, or rather, there's hours under capacity, I don't want it to add those hours to the total, just the hours over capacity. I want the hours under capacity to be capped at a different variable, called HoursPlanned.
Here's the new logic of something that I'd like:
TotalHOC = IF ( (SUM('Testing Totals'[HoursOverCapacity]) - SUM('Testing Totals'[HoursUnderCapacity])) > 0, SUM('Testing Totals'[HoursOverCapacity]) - SUM('Testing Totals'[HoursUnderCapacity]), IF ( ABS(SUM('Testing Totals'[HoursOverCapacity]) - SUM('Testing Totals'[HoursUnderCapacity])) > SUM('Testing Totals'[HoursPlanned]), SUM('Testing Totals'[HoursPlanned]), ABS(SUM('Testing Totals'[HoursOverCapacity]) - SUM('Testing Totals'[HoursUnderCapacity])) ) )So, for an example with this picture; the hours under capacity is capped at 18.75, the constant of HoursPlanned, but I'd like the hours over capacity to be added/subtracted from the hours under capacity. I guess it would be better to have another measure?
- amitchandakSuper User
Can you share sample data and sample output like the one before with planned hours too