Forum Discussion
Variance between rows if multiple entries exist in specified timeframe
- Anonymous6 years ago
Hi greenawayr,
In fact, I already filter on the 'parent' field to find out the minimum date based on its 'id' and stored into a variable.
After these steps, you can use current id and the first date to lookup the correspond score and calculate with the current score to get the diff.Diff = VAR currScore = MAX ( LIVE[Score] ) VAR currID = MAX ( LIVE[ID] ) VAR currDate = MAX ( LIVE[Modified] ) VAR prevDate = CALCULATE ( MIN ( Staging[Modified] ), FILTER ( ALLSELECTED ( Staging ), [ParentID] = currID && [Modified] <= currDate - 30 ) ) VAR prevScore = LOOKUPVALUE ( Staging[Score], Staging[ParentID], currID, Staging[Modified], prevDate ) RETURN IF ( prevDate <> BLANK (), currScore - prevScore, 0 )BTW, My formula is a measure, please not use it in a calculated column.
Regards,
Xiaoxin Sheng
Sorry, I'm not having much luck with this, I may not be explaining it properly.
My Staging table could contain multiple rows child rows and therefore I need a way to return the current score, only for the first row that matches my Parent ID, is older than 30 days and sorted in ascending order.
I've created a column that calculates the number of days between todays date and the modified date, and gives me an integer, so in theory I'm looking for the score where ID = Parent and && CalculatedModifiedDate > 30. However, because this returns more than one value, I'm getting errors around returning multiple results in a scalar value. I've TopN, Min etc, but keep seeming to get the same error.
How do I get only one result returned so I can store that in a column and subtract it from my LIVE score?
Thanks for your help so far.
Hi greenawayr,
In fact, I already filter on the 'parent' field to find out the minimum date based on its 'id' and stored into a variable.
After these steps, you can use current id and the first date to lookup the correspond score and calculate with the current score to get the diff.
Diff =
VAR currScore =
MAX ( LIVE[Score] )
VAR currID =
MAX ( LIVE[ID] )
VAR currDate =
MAX ( LIVE[Modified] )
VAR prevDate =
CALCULATE (
MIN ( Staging[Modified] ),
FILTER (
ALLSELECTED ( Staging ),
[ParentID] = currID
&& [Modified] <= currDate - 30
)
)
VAR prevScore =
LOOKUPVALUE (
Staging[Score],
Staging[ParentID], currID,
Staging[Modified], prevDate
)
RETURN
IF ( prevDate <> BLANK (), currScore - prevScore, 0 )
BTW, My formula is a measure, please not use it in a calculated column.
Regards,
Xiaoxin Sheng
- greenawayr6 years agoHelper I
Hi,
Sorry, I marked this as the correct answer by mistake.
I think the problem here is the solution given is a measure.
I need to see the variance from the "Current Score" in Live, to the Current Score of the child item in the staging table that is the Max modified date but older than 30 days.
I'm trying the below, which seems to be performing the correct calculation as there are Variances being shown where they exist, however it's not pulling back the correct variance as I can see calculations happening which include values that weren't last score 30 days ago.
ColScoreDiff = VAR prevDate = CALCULATE(MAX(Risks_Staging[Modified]),FILTER(ALLSELECTED(Risks_Staging),Risks_Staging[iHubRef]=Risks_LIVE[iHubRef] && Risks_Staging[Modified] <= TODAY() - 30)) VAR prevScore = LOOKUPVALUE(Risks_Staging[CurrScore],Risks_Staging[iHubRef],Risks_LIVE[iHubRef],Risks_Staging[Modified], prevDate) Return IF(prevDate<> BLANK (), Risks_LIVE[CurrScore] - prevScore, 0)01232 17/12/2019 16 01232 02/11/2019 4 And in my parent table I would have
ID Score Variance 01232 16 8 In this case I wouldn't expect to see a variance as the Live score is the same as the score 30 days ago. However, in my DAX shown above it returns a value of -8, which shows that I'm looking up a value at least, but not quite with the correct parameters and I cannot figure out why.
Thanks again