Forum Discussion
Measure or calculated using data from multiple tables
Hi,
Since you have the information on how much capacity per spint there is I guess your issue is the inactive relationship which is required for aquiring "days remaining". You can activate this relationship by using USERELATIONSHIP in a DAX formula or alternatively by using variables e.g. something like this
[days remaining] =
var _sprintID = MAX(sprint_reports[sprintId]) return
CALCULATE(SUM(sprints[days_remaining]), sprints[sprintID] = _sprintID)
All in all, I recommend first creating measures to calculate [days remaining] and [user capacity] and then using these to create your final measure.
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Hi,
I already had the days remaining and capacity as measures, but still didn't manage to create a final measure.
I'll return with a dummy PBIX in a couple of days to properly detail the issue. Thank you for your input!