Forum Discussion
MrAdrien
3 years agoFrequent Visitor
Create a measure that return a string value from a column depending on selected value
Hi everybody, First thank you helping me I am trying to create a time of event that milestone. This time line in filled in from Jira Issue We want this timeline to be contextualize by perso...
- 3 years ago
MrAdrien , In measure you have use aggregation
example
DescPersona = maxx('Issues New',
IF(
SELECTEDVALUE(Personas[PType]) ="Manager",
'Issues New'[DescManager],
IF(
SELECTEDVALUE(Personas[PType]) ="Developer",
'Issues New'[DescDeveloper],
IF(
SELECTEDVALUE(Personas[PType])="Tester",
'Issues New'[DescTester],
'Issues New'[Description]
)
)
) )
MrAdrien
3 years agoFrequent Visitor
I set it solved, using DAX Studio I found that the measure is correct, it is a problem of the graph itself : Timeline by Queryon.
The description field doesn't accept measure but only column...