Forum Discussion
ShivGC
2 years agoHelper I
Simple Custom Data Label
HI, I want to create a custom data label with Dax, where it refers to multiple different things. For instance, I have an unrelated table 1 and table 2. In Table 1, there is one column with ...
ValtteriN
2 years agoCommunity Champion
Hi,
Similarly to your if condition use a function like SELEDTEDVALUE or MAX and you can see the result.
E.g.
Measure_ = If(
Selectedvalue('Table (3)'[Client ]) = Selectedvalue('Table (4)'[Client Name]),
max('Table (4)'[Identifier])&"-"&MAX('Table (4)'[Value])
)
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/
- ShivGC2 years agoHelper I
No sorry this does not work.
Why do you use a max function, when the identifier column is a string?