Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jmcouffin
Regular 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. 

2019-05-31_12-59-56.png

 

 

 

 

 

 

 

 

 

 

 

I managed to get the concatenated list of text through a quick measure -> last option, concatened list2019-05-31_13-08-02.png

but I would like to get the difference between the selected data, the output should look like this: D (on the 17),E (on the 18th)

 

thks for your help

4 REPLIES 4
Mariusz
Community Champion
Community Champion

Hi @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.

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.

 

Hi @jmcouffin 

Can You provide a data sample?

Many Thanks

Mariusz

there you go @Mariusz 

 

slicer-dates-values

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.