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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
ashu710
Frequent Visitor

Duplicates using Date and Duplicate/Original Slicer

Hi all, I would like to implement two slicers on a table similar to the one below. One for date and the other one for duplicates. For example, if the Duplicate/Original slicer says "Original" and Date Slicer says "01-01-2022" to "07-01-2022" the visual should show "3" and if the Duplicate/Original says "Duplicate" in the same date range, the visual should show 4. Thanks.

ashu710_0-1642518776909.png

 

1 ACCEPTED SOLUTION
v-angzheng-msft
Community Support
Community Support

Hi, @ashu710 

Try this:

result =
VAR _originalValues =
    DISTINCTCOUNT( yourTable[valuesColumn] )
VAR _duplicateValues =
    COUNT( yourTable[valuesColumn] ) - _originalValues
VAR _if =
    SWITCH(
        TRUE(),
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Original", _originalValues,
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Duplicate", _duplicateValues
    )
RETURN
    _if

 

 

Best Regards,
Community Support Team _ Zeon Zheng

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-angzheng-msft
Community Support
Community Support

Hi, @ashu710 

Try this:

result =
VAR _originalValues =
    DISTINCTCOUNT( yourTable[valuesColumn] )
VAR _duplicateValues =
    COUNT( yourTable[valuesColumn] ) - _originalValues
VAR _if =
    SWITCH(
        TRUE(),
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Original", _originalValues,
        SELECTEDVALUE( 'theTable'[Slicer] ) = "Duplicate", _duplicateValues
    )
RETURN
    _if

 

 

Best Regards,
Community Support Team _ Zeon Zheng

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

BA_Pete
Super User
Super User

 

Wow, didn't fancy waiting a few hours for your answer on the other thread, huh?

I'll close off the old thread as you now have this one open as well.

 

FWIW, I'd be interested to know why you need to add this amount of complexity into your reporting when 99% of the time just displaying the two measures I gave you in the other thread would more than suffice.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Hi @BA_Pete there's reporting that needs to be done on an urgent basis. I had already presented the solution you sent to my manager, and he thought that this would be an ideal solution. A few more calculations would be based off those measures, which I am unable to present using the given solution. Thanks.

 

Ashu

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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

Top Solution Authors