Forum Discussion
Anonymous
5 years agoNot applicable
Replace value
Hello all, I have some trouble finding the solution to the following problem: I want to replace the value of (row x, column x) with the value of (row n, column n), where the value of (row x, colu...
- 5 years ago
You can add a DAX column with this expression to get your result.
EpicName2 =
VAR thisepiclink = Issues[Epic Link]
VAR result =
MINX ( FILTER ( Issues, Issues[Issue] = thisepiclink ), Issues[Epic Name] )
RETURN
IF ( Issues[Epic Link] = "", Issues[Epic Name], result )Pat
mahoneypat
5 years agoMicrosoft Employee
You can add a DAX column with this expression to get your result.
EpicName2 =
VAR thisepiclink = Issues[Epic Link]
VAR result =
MINX ( FILTER ( Issues, Issues[Issue] = thisepiclink ), Issues[Epic Name] )
RETURN
IF ( Issues[Epic Link] = "", Issues[Epic Name], result )
Pat
- Anonymous5 years agoNot applicable
Thank you Pat, that did the job!