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 made a simple test with this code line
MeasureDescPersona = MAXX('Issues New', 'Issues New'[Description])
I put it in the field of the timeline graph, and nothing is displayed
Of course it work when in the field I directly put 'Issues New'[Description])