Forum Discussion
Dynamic Comments DAX
- Anonymous9 years ago
No, it's because VALUES returns multiple values. Which is why it's not called VALUE. A measure has to return a single value for each filtering context. If you're trying to display multiple values from the Commentary1 column for each row, you'll need to use the CONCATENATEX function. If there's only one Commentary1 value for each row you can probably use FIRSTNONBLANK.
I'm close to have it working ,It's like this:
It's maybe because I have blanks?
No, it's because VALUES returns multiple values. Which is why it's not called VALUE. A measure has to return a single value for each filtering context. If you're trying to display multiple values from the Commentary1 column for each row, you'll need to use the CONCATENATEX function. If there's only one Commentary1 value for each row you can probably use FIRSTNONBLANK.
- Gabrielmm9 years agoRegular Visitor
There is 1 only comment for each row, FIRSTNONBLANK worked perfectly,Thanks!