Forum Discussion
Anonymous
3 years agoNot applicable
Measure returns same value for all rows in matrix
I know there's a similar thread for this issue, but I'm new to DAX and I'll admit the advice given went over my head. My measure is meant to return the due date for the last task of a particular...
- 3 years ago
Hi, Anonymous
I simulated some data hoping to restore your problem. Please check the attachment.
EndofWork = CALCULATE ( MAX ( FactTasks[DueDate] ), FILTER ( ALL ( DimTasks ), DimTasks[TaskType] = "Software - Work Planning" && [ProjectID] = SELECTEDVALUE ( FactTasks[ProjectID] ) ) )Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
Community Support
3 years agoHi, Anonymous
I simulated some data hoping to restore your problem. Please check the attachment.
EndofWork =
CALCULATE ( MAX ( FactTasks[DueDate] ),
FILTER ( ALL ( DimTasks ),
DimTasks[TaskType] = "Software - Work Planning"
&& [ProjectID] = SELECTEDVALUE ( FactTasks[ProjectID] )
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.