Forum Discussion
jmcouffin
7 years agoRegular Visitor
output difference of text values between two dates _ slicer
Hi all, I am trying to get the differences of values (text type) when I select two dates. My data would look like this. I managed to get the concatenated li...
Mariusz
Community Champion
7 years agoHi jmcouffin
You can use the below DAX Expression.
Measure =
CONCATENATEX(
EXCEPT(
ALLSELECTED(YourTable[Sous-projets]),
VALUES(YourTable[Sous-projets])
),
YourTable[Sous-projets],
", "
)
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
jmcouffin
7 years agoRegular Visitor
Hi Mariusz,
Thanks for your reply.
It is getting me closer but not quite enough :)
This way I get the list of values that do not belong to my filtered dates.
What I need is to get the list of values that mismatch within that time frame, not outside.
- jmcouffin7 years agoRegular Visitor